
Spooktober
This is a very small repo that I created for a contest on Codecademy.
The objective was to create a Halloween themed something.
I was coming late to the competition so I decided to write a simple script in python. Basically taking the age-old question of βTrick or Treat?β and asking the user. Itβs so small in fact that I may as well paste it here!
import random
while True:
t_or_t = input("π Trick or Treat? ").lower()
if t_or_t == "trick":
print("π» B", end="")
print("".join(random.choice(["O", "o"]) for _ in range(100)))
break
elif t_or_t == "treat":
print("π« Happy Halloween! Have some candy π«")
break
else:
print("π Hey, that's not an option!")
continue