Created
September 5, 2018 10:54
-
-
Save samister2k/f3abd50fa2211c3af3ee3ca30db1e07c to your computer and use it in GitHub Desktop.
ColorlessComplicatedAssociate created by samister2k - https://repl.it/@samister2k/ColorlessComplicatedAssociate
This file contains 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
name = input("Say a name") | |
verb = input("Say a verb") | |
place = input("Say a place") | |
print(" " + name + " " + verb + " to " + place ) | |
""" | |
Say a name sam | |
Say a verb ran | |
Say a place rush | |
sam ran to rush | |
""" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment