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