Check your covid 19 health and know status
Note: This program is only for learning purposes so don't take it as serious if you really think you are sick and infected get medical attention as soon as possible.
Thank you.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#pip install covid | |
#please install the module first | |
from covid import Covid | |
print("covid 19 check up program in python developed by Somdev Behera") | |
name=input("please enter your name:") | |
def covid1(): | |
print("lets check your covid status") age=int(input("enter your age:")) | |
print("\naccording to the latest covid 19 data from official sites here is your stats\n") | |
if age in range(0,9): | |
print("your fatality rate of corona virus is 0.00%") | |
elif age in range(10,39): | |
print("your fatality rate of corona virus is 0.2%") | |
elif age in range(40,49): | |
print("your fatality rate of corona virus is 0.4%") | |
elif age in range(50,59): | |
print("your fatality rate of corona virus is 1.3%") | |
elif age in range(60,69): | |
print("your fatality rate of corona virus is 3.6%") | |
elif age in range(70,79): | |
print("your fatality rate of corona virus is 8.0%") | |
elif age>=80: | |
print("your fatality rate of corona virus is 14.8% to 21.0%\n take care") | |
else: | |
print("wrong input, please try again") | |
def covid2(): | |
print("answer some questions") | |
fever=input("do you have fever?\nyes=y,no=n\n") | |
if fever=="y": | |
print("if you are suffering from fever from many days, consult a docter") | |
elif fever=="n": | |
print("check other symptoms") | |
else: | |
print("wrong input, please try again") | |
return fever | |
def covid3(): | |
breath=input("do you have respiratory problems?\nyes=y,no=n\n") | |
if breath=="y": | |
print("consult a doctor soon") | |
elif breath=="n": | |
print("check other symptoms") | |
else: | |
print("wrong input,try again") | |
return breath | |
def covid4(): | |
cough=input("do you have cough?\nyes=y,no=n\n") | |
if cough=="y": | |
print("if cough is very serious go to hospital and consult a doctor") | |
elif cough=="n": | |
print("check other symptoms") | |
else: | |
print("wrong input,try again") | |
return cough | |
def covid5(): | |
tired=input("do you feel tired?\nyes=y,no=n\n") | |
if tired=="y": | |
print("go to the hospital, check your health status and consult with a doctor") | |
elif tired=="n": | |
print("whenever you feel very tired with unusual reason get medical attendance") | |
else: | |
print("wrong input,try again") | |
return tired | |
covid1() | |
b=covid2() | |
c=covid3() | |
d=covid4() | |
e=covid5() | |
if (b=="y" and c=="y" and d=="y" and e=="y"): | |
print("dear",name,"there is an urgent need for you to go to a hospital and consult with a doctor") | |
else: | |
print("\ndear",name,"you looks to be safe") | |
print("\n but if you feel very sick you should consult a doctor immediately") | |
print("\nIn this unusual period of corona virus outbreak it is better to stay home\n always wash your hands with handwash or alcohol based hand sanitisers\n wear a mask\n never forget to wash your masks regularly\n maintain social distancing") | |
print("\nSTAY HOME STAY SAFE") | |
print("\nhere are the quick statistics of covid 19 data worldwide") | |
covid=Covid() | |
print("total active cases:",covid.get_total_active_cases()) | |
print("total deaths:",covid.get_total_deaths()) | |
print("total confirmed cases:",covid.get_total_confirmed_cases()) | |
print("\ndeveloped with love by Somdev Behera") |
Great job!!! upcoming coder, world needs you... Go ahead.
Great job!!! upcoming coder, world needs you... Go ahead.
Thanks a lot
Well done our future Scientist..😀👍👍
Thank you so much
Wowww, great job... Keep it up bro
Keep supporting
Please share if you like