blob: e5d07d608c3d1021c79227b9a7813464f4ac6f7f (
plain)
1
2
3
4
5
6
|
# Create a basic story where the names of at least 2 of the characters can be chosen using Python. For example see
# the beginner slideshow #1 last slide.
one = input("Enter the name of the first character ")
two = input("Enter the name of the second character ")
print("One day,", one, "coded a game.", two, "thought it was cool. \nThe end.")
|