Code for simple cara game jeanson
start = 'engine start... brrrooooomm'
stop = 'engine stop......'
quite = 'leave.'
started = False
help = '''
start - engine start
stop - engine stop
quite - leave
'''
command = ""
while command != quite:
command = input('> ').lower()
if command == "start":
if started:
print('The car is already started!')
else:
started = True
print(start)
elif command == "stop":
if stop:
if not started:
print('Car is already stopped!')
else:
started = False
print(stop)
elif command == 'help':
print(help)
elif command == "quite":
print('exit byeeeeeeee...')
break
else:
print("I don't understand that..")