Formatting

This commit is contained in:
Firepup Sixfifty 2024-04-26 22:59:57 -05:00
parent 7c2c93cd14
commit 8d7e01560e
Signed by: Firepup650
GPG key ID: 7C92E2ABBBFAB9BA

View file

@ -1,4 +1,5 @@
import sys
sys.path.append("/dev-py-packages")
from firepup650 import inputCast, clear
@ -19,10 +20,12 @@ while 1:
clear()
if known[str(round)]:
print(f"Known Shell! Shell is {known[str(round)]}")
print(f"""Chance of live shell: {(live/(live+blank if live+blank>0 else 1))*100}%
print(
f"""Chance of live shell: {(live/(live+blank if live+blank>0 else 1))*100}%
Chance of blank shell: {blank/(live+blank if live+blank>0 else 1)*100}%
Shells left: {total} ({blank}B {live}L)
Next shell is?""")
Next shell is?"""
)
next = inputCast("> ").upper()
if next in ["B", "L"]:
blank = blank - 1 if next == "B" and not known[str(round)] else blank