Quotes help make search much faster. Example: "Practice Makes Perfect"
Sunday, November 25, 2012
Codecademy: "type()"
#sample solution
#Print out the types of an integer, a float, and a string
#on separate lines below.
import math
print type(1)
print type(math.pi)
print type("A string.")
No comments:
Post a Comment