LowoTV
Joined 5 October 2024
No edit summary |
m i love bloonscyclopedia |
||
| Line 1: | Line 1: | ||
hi '''Ü''' | hi '''Ü''' i like math, and bit stuffs | ||
< | |||
Bloons Monkey City is a good game please play it. | |||
i like testing... this is a joke page<syntaxhighlight lang="python3" line="1"> | |||
import time as t # Don't ask what time is for | |||
import random as r # Just for fun | |||
# Randomized variables, but don't think too much about it | |||
a1, a2, a3, a4, a5 = "P", "h", "r", "a", "s" # p for power | |||
a6, a7, a8, a9, a10 = "e", " ", "t", "o", " " # space space space | |||
a11, a12, a13, a14, a15 = "s", "c", "r", "o", "l" # roll 'em | |||
a16, a17, a18, a19, a20 = "l", "(", "t", "y", "p" # type something | |||
a21, a22, a23, a24, a25 = "e", "'", "e", "x", "i" # EEXACTLY | |||
a26, a27, a28, a29, a30 = "t", "'", " ", "t", "o" # Tension in the air | |||
a31, a32, a33, a34, a35 = " ", "q", "u", "i", "t" # Quite quiet | |||
a36, a37, a38, a39, a40 = ")", ":", " ", " ", " " # Closing arguments | |||
# Main loop of things happening... or not | |||
while 1: | |||
try: | |||
# So here we ask for something. Anything. | |||
P = input( | |||
a1 + a2 + a3 + a4 + a5 + a6 + a7 + a8 + a9 + a10 | |||
+ a11 + a12 + a13 + a14 + a15 + a16 + a17 + a18 | |||
+ a19 + a20 + a21 + a22 + a23 + a24 + a25 + a26 | |||
+ a27 + a28 + a29 + a30 + a31 + a32 + a33 + a34 | |||
+ a35 + a36 + a37 + a38 + a39 + a40 | |||
) | |||
if P.lower() == "exit": # It's a trap! Or maybe not. | |||
break # But where are we breaking to? Is it the future? | |||
C = ''.join(chr(x) for x in range(32, 127)) # Random stuff, or all chars | |||
F = [] # Here’s a list, it’s important... or maybe not | |||
for c in P: # The loop is real! | |||
for c_c in r.sample(C, len(C)): # A sampling of life itself | |||
print(''.join(F) + c_c, end='\r') # This prints and rewinds the clock | |||
t.sleep(r.uniform(0.01, 0.1)) # Time is a social construct | |||
if c_c == c: # Do we even match? Who knows. | |||
F.append(c_c) # Collecting memories or letters | |||
break # The end of the road... or is it? | |||
print(''.join(F)) # Final result, or not. | |||
except: | |||
# Error detected, I guess | |||
e1, e2, e3, e4, e5 = "A", "n", " ", "e", "r" # E for effort | |||
e6, e7, e8, e9, e10 = "r", "o", "r", " ", "o" # Repetitions are comforting | |||
e11, e12, e13, e14, e15 = "c", "c", "u", "r", "r" # Curiosity may have killed the cat | |||
e16, e17, e18 = "e", "d", "." # But who’s counting? | |||
print(e1 + e2 + e3 + e4 + e5 + e6 + e7 + e8 + e9 + e10 + e11 + e12 + e13 + e14 + e15 + e16 + e17 + e18) # Error? Or opportunity? | |||
</syntaxhighlight>heres some lovely obfuscated python code, good luck decrypting it XDD | |||