Computer Science, asked by thekansra2794, 11 months ago

Predict the output of the following:
for q in range(100,50,-10):
print(q)

Answers

Answered by gauravarduino
0

Explanation:

Output of Python Program | Set 1. Predict the output of following python programs: ... r = lambda q: q * 2. s = lambda q: q * 3. x = 2. x = r(x). x = s(x). x = r(x). print x ... for i in ( 1 , 2 , 3 ...

Similar questions