Wednesday, 10 June 2015

Code academy: Function: 3/19: Calling a function with parameter

We've set up a function, square. Call it on the number 10 (by putting 10between the parentheses of square()) on line 9!

Solution:
def square(n):
    """Returns the square of a number."""
    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