Added a $ to losses display

This commit is contained in:
Donald Calloway 2025-10-28 08:13:47 -07:00
parent 489b80d006
commit 45de90e6b9

View File

@ -486,7 +486,7 @@ def main():
print("You are busted! Thanks for playing.") print("You are busted! Thanks for playing.")
exit() exit()
else: else:
print(f"\nYour profits are: ${profits} and losses are {losses} yielding current holdings: ${holdings}") print(f"\nYour profits are: ${profits} and losses are ${losses} yielding current holdings: ${holdings}")
print() print()
keep_playing() keep_playing()