InterviewSolution
Saved Bookmarks
| 1. |
Predict the output of the following:for q in range(100,50,-10):print(q) |
|
Answer» tion: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 ... |
|