Q. What is the output of the following Python code?
Code:
x = 10 y = 5 print(x % y)
β
Correct Answer: (B)
1
x = 10 y = 5 print(x % y)
You must be Logged in to update hint/solution