Instant Hacking
Learn how to program with Python

Using Variables

    # The Area of a Rectangle

    # Ingredients:

    width = 20
    height = 30

    # Instructions:

    area = width*height
    print area