Advertisements
Advertisements
Question
The code given below accepts a number as an argument and returns the reverse number. Observe the following code carefully and rewrite it after removing all syntax and logical errors. Underline all the corrections made.
define revNumber (num) :
rev = 0
rem = 0
While num > 0:
rem ==num %10
rev = rev*10 + rem
num = num//10
return rev
print (revNumber (1234))
Solution
def revNumber (num) :
rev = 0
rem = 0
while num > 0:
rem =num %10
rev = rev*10 + rem
num = num//10
return rev
print (revNumber (1234))
APPEARS IN
RELATED QUESTIONS
Which of the following error is also known as Syntax Error?
What types of errors are also known as parsing errors?
What will be the output for the following code?
x = ""hello""
if not type(x) is int:
raise TypeError(""Only integers are allowed"")
The only exception that is raised when the program is syntactically incorrect:
What exception will be thrown in the following case?
>>> import math
>>> math .sqrt(– 4)
An error object does not have information of:
What error is returned by the following statement if the file does not exist?
f = open("A.txt")
“Every syntax error is an exception but every exception cannot be a syntax error.” Justify the statement.
Atharva is a Python programmer working on a program to find and return the maximum value from the list. The code written below has syntactical errors. Rewrite the correct code and underline the corrections made.
def max_num (L):
max=L(O)
for a in L:
if a > max
max=a
return max