20 lines
280 B
Python
20 lines
280 B
Python
|
#!/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")
|
||
|
|