Advertisement
jinglis

Favorite Foods Combine

Aug 28th, 2014
235
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.37 KB | None | 0 0
  1. # Name: James Inglis
  2. # Syntax: Python
  3. # Date: 8/28/14
  4. # Description: Concatenating strings.
  5.  
  6. favoriteFirst = str(input("What is your first favorite food?: "))
  7.  
  8. favoriteSecond = str(input("What is your second favorite food?: "))
  9.  
  10. addingTogether = favoriteFirst + favoriteSecond
  11.  
  12. print("Combining both together will create!!! ", addingTogether.upper() + "Ohh Yes!")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement