Westonci.ca is the best place to get answers to your questions, provided by a community of experienced and knowledgeable experts. Get precise and detailed answers to your questions from a knowledgeable community of experts on our Q&A platform. Get precise and detailed answers to your questions from a knowledgeable community of experts on our Q&A platform.

If the user enters 5 what is output?



num = int(input("Enter a number: "))
num = num % 4
if (num == 1):
print ("A")
elif (num == 2):
print ("B")
elif (num == 3):
print ("C")
elif (num == 4):
print ("D")
else:
print ("E")