Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/usr/bin/env python
- # -*- coding: utf-8 -*-
- #
- # sin título.py
- #
- import time
- def borrarPantalla():
- import os
- if os.name == "posix":
- os.system ("clear")
- else:
- os.system ("cls")
- print("Hola")
- time.sleep(1)
- borrarPantalla()
- print("Hola amigo")
- time.sleep(1)
- borrarPantalla()
- print("Hola amigo mío")
- time.sleep(1)
- borrarPantalla()
Advertisement
Add Comment
Please, Sign In to add comment