Advertisements
Advertisements
Question
The code given below accepts five numbers and displays whether they are even or odd:
Observe the following code carefully and rewrite it after removing all syntax and logical errors:
Underline all the corrections made.
def EvenOdd()
for i in range (5):
num=int (input ("Enter a number")
if num/2==0:
print ("Even")
else:
print ("Odd")
EvenOdd()
Code Writing
Solution
Given code:
def EvenOdd()
# : is not present after function definition
for i in range(5):
num=int(input("Enter a number")
#closing parenthesis is not present
if num / 2==0:
# % to be used in place of / for remainder
print("Even")
else:
print("Odd") #Indentation not correct
EvenOdd()
Corrected code:
def EvenOdd():
for i in range(5):
num=int(input("Enter a number"))
if num % 2==0:
print(" Even")
else:
print("Odd")
Even Odd()
shaalaa.com
Is there an error in this question or solution?