Get link Facebook X Pinterest Email Other Apps March 30, 2022 NESTED LOOPnumber_grid = [ [1, 2, 3], [4, 5, 7], [7, 8, 9], [0]]for row in number_grid: for col in row: print(col) Get link Facebook X Pinterest Email Other Apps Comments
March 29, 2022 WHILE LOOP➰ i = 1 while i <= 10 : print (i) i += 1 print ( "done with loop" ) Read more
Comments
Post a Comment