Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import time
- m = 0
- s = 0
- while s !=60:
- time.sleep(1)
- s+=1
- if s >=60:
- s = 0
- m += 1
- print m
- print s
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement