Advertisement
Josif_tepe

Untitled

Sep 28th, 2024
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.13 KB | None | 0 0
  1. def main():
  2.     cnt = 0
  3.     while cnt < 10:
  4.         print(cnt)
  5.         cnt += 1
  6.  
  7.  
  8. if __name__ == "__main__":
  9.     main()
  10.  
  11.  
  12.  
  13.  
  14.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement