Rewrite the python program after correcting the errors:
a) n=integer(input(“Enter no = ”))
for i in range(1,n):
PRINT(i)
b) no=10
FOR i in range(1,100,10) ;
print (i*2)
Answers
Answered by
1
a)
n=int(input("Enter no = "))
for i in range(1,n):
print(i)
b)
no=10
for i in range(1,100,10):
print(i*2)
Answered by
1
Answer:
n=integer(input(“Enter no = ”))
for i in range(1,n):
PRINT i
Explanation:
can't find others
Similar questions