1.

In Python what is the output of the following code?

Answer»

In Python what is the OUTPUT of the following code?
for x in RANGE(1,100, 10):
print(x)
Choose the correct answer from below options
(1)2-20-200
(2)1 11 21 31 41 51 61 71 81 91
(3)2 20 200
(4)Error

Answer:-(2)1 11 21 31 41 51 61 71 81 91



Discussion

No Comment Found