testScore = 0 #will declare testScore as an integer
testScore
testScore = 0
print id(testScore)
import sys
testScore = 0
myGPA = 0.0
print "The address of testScore is: ", id(testScore)
print "The size of testScore is: ", sys.getsizeof(testScore)
print "The address of myGPA is: ", id(myGPA)
print "The size of myGPA is: ", sys.getsizeof(myGPA)
testScore = 95;
print "Your test score is: ", testScore
testScore = 75
print "Your test score now is: ", testScore
testScore = 77.83;
print "The test score is: ", testScore
print "The test score is: ", int(testScore) # explicitly converting to integer
testScore = 32768;
print "Your test score is: ", testScore
testScore = -32769
print "Your test score is: ", testScore
testScore = int(raw_input())
print "Your test score is: ", testScore
testScore = int(raw_input("Enter your test score: "))
print "Your test score is: ", testScore
print "Enter your name: ",
myName = raw_input()
print "Enter your weight in pounds: ",
myWeight = raw_input()
print "Enter your height in inches: ",
myHeight = raw_input()
print "Your name score is: ", myName
print "Your weight in pounds is ", myWeight
print "Your height in inches is ", myHeight
print "Enter your name: ",
myName = raw_input()
print "Enter your weight in pounds: ",
myWeight = raw_input()
print "Enter your height in inches: ",
myHeight = raw_input()
print "Your name score is: ", myName
print "Your weight in pounds is ", myWeight
print "Your height in inches is ", myHeight
print "Enter your name: ",
name = raw_input()
print "Your name is ", name
testScore = 32769
print "Your test score is: ", testScore