Last active
May 20, 2022 23:29
-
-
Save mteam88/13ceff9839e69c71e813bbcaeacac28c to your computer and use it in GitHub Desktop.
CodeRecipe
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
print("Guide: \n" + \ | |
''' | |
Enter your age. | |
Then don't | |
JUST DONT | |
then we have some fun numbers | |
for fun | |
so ha | |
lol | |
lol | |
lol | |
ok im done | |
start | |
enter age remember? | |
''') | |
age = input("Enter your age! ") | |
notage = input("Don't enter your age! ") | |
definitelynotage = input("IF YOU ENTER YOUR AGE I WILL BE MAD: ") | |
if age == notage or age == definitelynotage: | |
input("wow.\njust wow. ") | |
for i in range(100): | |
for j in range(100): | |
if i == 1: | |
print("i is one") | |
elif i == 1 and j == 1: | |
print("j is one") | |
elif i == 4 and j == 2: | |
print("The meaning of life") | |
elif i == 6 and j == 9: | |
print("LOLOLOLOL") | |
elif i == 69 and j == 69: | |
print("LOLOLOLOLLOLOLOLOLLOLOLOLOLLOLOLOLOL") | |
elif i * j < 200 and i * j > 100 and i > 10: | |
print(i * j) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment