Advertisement
TristanSld

while loop

Jan 7th, 2014
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.08 KB | None | 0 0
  1. #!/usr/bin/env python
  2. #-*-coding:utf-8-*-
  3. a=0
  4. while a<100:
  5.     a+=1
  6.     print a
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement