for example:
print ('Choose your character, Bob, a 19 year old student, or Craig, a 32 year old man')
resp = input
if ('Bob') in resp:
print ('You have chosen Bob.')
elif ('Craig') in resp:
print ('You have chosen Craig!')
else:
print ('Invalid. Please check spelling')
please help, I am experimenting in Python ;)