Advertisement
Guest User

Untitled

a guest
Oct 30th, 2014
195
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.78 KB | None | 0 0
  1. print "Hello welcome to socks"
  2.  
  3. def socks(sock_color, sock_size, fav_color, music):
  4.     sock_color = raw_input("What is your sock color: ")
  5.     sock_size = raw_input("What size sock are you? Pleae provide a valid interger: ")
  6.     fav_color= raw_input("What is your favorite color?: ")
  7.     music = raw_input("Who is your favorite band?: ")
  8.  
  9.  
  10.     print "Today we discuss your %s socks, size %s sock..your favorite color %s...I like %s too." % sock_color, sock_size, fav_color, music
  11.     print "Most people do wear %s...try again" % sock_color
  12.     print "But wow you do have big feet...a size %s?!?!" % sock_size
  13.     print "ahhhhh my favorite color is also %s." % fav_color
  14.     print "I like %s too, rock on." % music
  15.  
  16.  
  17. print "lets do it"
  18. socks(sock_color, sock_size, fav_color, music)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement