MCPcopy Create free account
hub / github.com/geekcomputers/Python / choices

Function choices

depreciated_programs/corona_cases.py:79–94  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

77
78
79def choices():
80 print("\n1 - To Know Corona Virus Update Across World")
81 print("\n2 - To Know Corona Virus Update In India")
82 choice = input("Enter 1 Or 2 :- ")
83
84 if choice == "1":
85 world()
86 sleep(1)
87 choices()
88 elif choice == "2":
89 india()
90 sleep(1)
91 choices()
92 else:
93 print("\nYou Have Entered Something Wrong, Please Enter Again")
94 choices()
95
96
97choices()

Callers 3

generateMethod · 0.85
generateMethod · 0.85
corona_cases.pyFile · 0.85

Calls 2

worldFunction · 0.85
indiaFunction · 0.85

Tested by 2

generateMethod · 0.68
generateMethod · 0.68