Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions LetterRain/LetterRain.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
from string import printable
from time import sleep

text = 'Hello, World!'
temp = ""

for ch in text:
for i in printable:
"""
//THE CODE IN THIS DOC IS THE ORIGINAL SOURCE. I SIMPLIFIED IT MYSELF

if i == ch or ch == ' ':
sleep(0.03)
print(temp+i)
temp += ch
break
else:
sleep(0.03)
print(temp+i)
"""
sleep(0.03)
print(temp+i)
if i == ch or ch == ' ':
temp += ch
break
5 changes: 5 additions & 0 deletions LetterRain/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Letter Rain
This is an basic script where you replace the variable text (LEAVE temp ALONE.), and then run the script, it's pretty cool. <br>
Owned by <a src="https://github.com/Agsgt2">me!</a>
## Why Letter Rain?
I really dont know