Advertisement
Guest User

Untitled

a guest
Feb 14th, 2020
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.11 KB | None | 0 0
  1. for i in range(3):
  2.     print("This is the outer loop")
  3.     for j in range(3):
  4.         print("This is the inner loop")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement