Quotes help make search much faster. Example: "Practice Makes Perfect"

Sunday, November 25, 2012

Codecademy: "Call and Response"


#sample solution


def square(n):
    squared = n**2
    print "%d squared is %d." % (n, squared)
    return squared
   
#Call the square function on line 9! Make sure to
#include the number 10 between the parentheses.

square(10)

No comments:

Post a Comment


This is an example of scrolling text using Javascript.

Popular Posts