question is in the pic ... need little help guys
Attachments:
Answers
Answered by
1
Answer:
Added Below is a simple program with not many functions or added stuff.
Explanation:
b = int(input("Enter the no of people vaccinated in April in Delhi: "))
c = int(input("Enter the number of people vaccinated in May in Delhi: "))
d = int(input("Choose option, 1 for April data and 2 for May data: "))
if (d == 1):
print("The number is: ",b)
elif (d == 2):
print("The number is: ",c)
else:
print("Wrong choice.")
Remember to indent the values correctly!
Pls Mark Brainliest!
Attachments:
Similar questions