1. Rewrite the following code of statements after correcting the syntactical errors
1)
a=integer(input('First number"))
b= 10
for i in range(a:b)
PRINT(a*b)
if (a>b)
print (a)
2) i=10
while (i=>5):
print (I)
i=i+1:
Answers
Answered by
26
Answer:
Explanation:
- a = int(input("First number"))
b = 10
for i in range (a,b):
print(a*b)
if (a>b):
print(a)
2. i= 10
while (i => 5):
i=i+1
print (i)
good luck
Similar questions