Computer Science, asked by abhisheksaxenasinggh, 5 months ago

(in python)
ques->Consider the following program and remove error and write output:
for x in range (1,10)
print(12*x)​

Answers

Answered by jkrishnan465
1

Answer:

for x in range(1, 10) :

print(12*x)

output:

12

24

36

48

..

..

..

120

Similar questions