Skip to content

Instantly share code, notes, and snippets.

@toddmilne13
Created September 28, 2016 15:55
Show Gist options
  • Save toddmilne13/335221bcec1aaa57bf57c3bb655b4184 to your computer and use it in GitHub Desktop.
Save toddmilne13/335221bcec1aaa57bf57c3bb655b4184 to your computer and use it in GitHub Desktop.
Functions project
#here is a word changer thingamaboba lol
def adoodle(word):
print(word+"???")
print("more like...")
thingy = word+"adoodle"
thingy = thingy.upper()
print(thingy)
print("look at the cool word i just made " + word.upper() +"doodle")
while True:
doodle(input("give me a word and ill make it cool "))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment