''' I am trying to allow a user to type a capital "Yes" as input or a non-capitalized "yes" as input and still get a 'True' value for the variables, good and the same with 'phone' or 'Phone' for the variable, aid.
print ('Do you want to take the Carona Test in North Carolina: Type in
"Yes or No"')
good='Yes'
aid='phone'
good = input()
if good == 'Yes':
print ('The address is 1801 Glendale Dr SW, Wilson, NC 27893. ' +
'If you need the Helpline, type "phone" and if not type in "No".')
aid = input()
if aid=='phone':
print("NC CDC Help Line 1-866-462-3821. Don't forget to wash
your hands.")
else:
print('You have elected to do nothing silly human scum, good luck.')
'''