Computer Science, asked by krishaasonawane, 2 months ago

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 harshvirsing55
1

\huge\pink{\mid{\underline{\overline{\tt Answer :-}}\mid}}

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)

\small\orange{\tt Hope it will} \green{\tt helps you}

Answered by Aditijha1912
1

Answer:

n=integer(input(“Enter no = ”))

for i in range(1,n):

PRINT i

Explanation:

can't find others

Similar questions