Skip to content

Instantly share code, notes, and snippets.

@dexterpound
Created April 30, 2020 04:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dexterpound/7195bd6236ef34bc8dea4628a388d6b2 to your computer and use it in GitHub Desktop.
Save dexterpound/7195bd6236ef34bc8dea4628a388d6b2 to your computer and use it in GitHub Desktop.
A fun little program cobbled together Give out the NC Health Hotline and address with a poke if the answer is "No".
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' or 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' or 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.')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment