Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/usr/bin/env python
- # -*- coding: utf-8 -*-
- # simulo una cuenta regresiva de una bomba
- import time
- for tiempo in range(5,0,-1):
- print(tiempo)
- time.sleep(1)
- print("BOOM")
- # simulo 15 tiradas de dados
- import random
- for _ in range(15):
- print(random.randint(1,6), end=",")
Advertisement
Add Comment
Please, Sign In to add comment