Created
March 10, 2026 01:32
-
-
Save collei/e6471da10c2c45ba406abc83bfe3af0b to your computer and use it in GitHub Desktop.
SHURATO
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import time | |
| letras = ["","s","h","u","r","a","t","o"] | |
| espacos = 6 | |
| for letra in letras: | |
| print(letra + (" "*espacos), end='', flush=True) | |
| time.sleep(1.1) | |
| for n in range(6): | |
| espacos=espacos-1 | |
| print(" " * 49, end="\r") | |
| print(" " * 6, end="") | |
| for letra in letras: | |
| print(letra + (" "*espacos), end='', flush=True) | |
| print("", end="\r") | |
| time.sleep(0.0625) | |
| print(" " * 49, end="\r") | |
| print(" S H U R A T O", end="") | |
| input('\n\nEnter para fechar') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment