Skip to content

Instantly share code, notes, and snippets.

View dexterpound's full-sized avatar
🎯
Focusing

Peter Cockram dexterpound

🎯
Focusing
View GitHub Profile
@dexterpound
dexterpound / carona_humen_scum.py
Created April 30, 2020 04:19
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.")