
I dunno
By: a guest on
Sep 7th, 2012 | syntax:
Python | size: 0.70 KB | hits: 17 | expires: Never
sName = input("Give me a friends name: ")
sSchool = input("Give me a school name: ")
sAdjective = input("Give me an adjective: ")
sNoun = input("Give me a singular noun: ")
sExpression = input("Give a favorite expression: ")
iNumber = int(input("Give me an integer"))
floatVar = float(input("Give me a float"))
print (sName, "and I decided to try out the newest sport at", sSchool,". It's called", sAdjective, sNoun,". The object of the game is to kick a(n)", sAdjective, sNoun, "all the way to the end of the field. Every time you do, the fans yell ", sExpression,"!","and you get", iNumber, "points. The person with the most points wins. The ", sAdjective,"costs $", floatVar, " to purchase.")