stationbase/stastionbase.py

20 lines
280 B
Python
Raw Normal View History

2021-10-19 17:10:53 -07:00
#!/usr/bin/python3.10
class Drone:
def __init__(self, money):
self.money = money
while True:
repl = input(">> ")
if repl == "s":
print("Show me the money")
elif repl == "q":
quit()
else:
print("Not a command, bitch")