Get the answers you need at Westonci.ca, where our expert community is always ready to help with accurate information. Get precise and detailed answers to your questions from a knowledgeable community of experts on our Q&A platform. Get immediate and reliable solutions to your questions from a community of experienced professionals on our 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")


Sagot :

Answer: elif (num == 4):

Explanation: