()
| 77 | |
| 78 | |
| 79 | def 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 | |
| 97 | choices() |