Computer Science, asked by sreenand535, 11 hours ago

a. he What will be the output of the following: x=range(3,6) for n in x: print(n)​

Answers

Answered by srinutha0899
0

Answer:

prints 3 4 5

Explanation:

the x value is from range 3 to 6

so in for condition it will print 3 to 5

Attachments:
Similar questions