Westonci.ca is the premier destination for reliable answers to your questions, provided by a community of experts. Discover comprehensive solutions to your questions from a wide network of experts on our user-friendly platform. Explore comprehensive solutions to your questions from a wide range of professionals on our user-friendly 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")