Feb-19-2023, 06:54 PM
(This post was last modified: Feb-19-2023, 07:15 PM by Yoriz.
Edit Reason: Added code tags
)
I'm using simple ideas and theories to practice coding. I'm simply trying to except a input from user that returns a variable string. I want the user to choose a patch that will be developed as i go.
print(Welcome to The Bronx)
input('Will you fight for good or bad?: ')
good = 'Police Academy'
bad = 'corner lookout'
input('good or bad: ')
if input == (good):
print(good)
else:
print(bad)
