Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2019
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. """
  2. This script is for WeArePirple's assignment #1.
  3. The following gathers information about your favorite song.
  4. """
  5. song = input("What is your favorite song?\n")
  6. author = input("Who is the author?\n")
  7. genre = input("What type of genre is it?\n")
  8.  
  9. print("Here's the information we gathered. \nauthor: {0},\nsong: {1},\ngenre: {2}".format(author, song, genre))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement