Advertisements
Advertisements
प्रश्न
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()
कोड लेखन
उत्तर
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
या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?