diff --git a/LetterRain/LetterRain.py b/LetterRain/LetterRain.py new file mode 100644 index 0000000..99f9473 --- /dev/null +++ b/LetterRain/LetterRain.py @@ -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 diff --git a/LetterRain/README.md b/LetterRain/README.md new file mode 100644 index 0000000..e260fc7 --- /dev/null +++ b/LetterRain/README.md @@ -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.
+Owned by me! +## Why Letter Rain? +I really dont know