+ 1
I want many example for nesting loops in python
2 Respuestas
+ 5
MOHAMED ELRAYAH MAHMOUD AHMED ,
it should not be too difficult to find samples for "nested for loops" for python by using google search. but it would be more helpful if you would try it by yourself.
happy coding and good successs!
+ 2
here is one example.
for x in range(10):
for y in range(10):
print(x,y)