Computer Science, asked by pallavichittiprolu, 5 hours ago

print([[i+j for i in range (4) for j in range (2)])
tell the out put​

Answers

Answered by lavanya3602
2

Answer:

initially i range is 4 and j range is 2

so the out put will be

[[0,1,1,2,2,3,3,4]]

Similar questions