From 0dddd05b14e3976c828924de662cfc89c01cb088 Mon Sep 17 00:00:00 2001 From: Agsgt2 Date: Mon, 29 Sep 2025 19:57:54 -0600 Subject: [PATCH 1/2] Create README.md --- LetterRain/README.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 LetterRain/README.md 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 From 29293ff31b26f8a2bac55ad4358a320de4b71685 Mon Sep 17 00:00:00 2001 From: Agsgt2 Date: Mon, 29 Sep 2025 20:01:47 -0600 Subject: [PATCH 2/2] Create LetterRain.py --- LetterRain/LetterRain.py | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 LetterRain/LetterRain.py 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