Skip to content

Instantly share code, notes, and snippets.

Name = {2:'Green',7:'Hello',4:'Goodbye',10:'Bruh',69:'LOL',3:'Fizz',5:'Buzz'}
Name2 = {12:'Stinky',14:'Clown',13:'smellyben',45:'python'}
def FIZZBUZZ(Dict, NUMBERLIST):
for i in NUMBERLIST:
print(i)
for KEEZ in Dict.keys():
if (i % KEEZ) == 0:
print(Dict[KEEZ])