Instant Hacking
Learn how to program with Python

Getting Feedback

How do we tell the computer to check the radius?

    radius = input("What is the radius?")
    print radius*radius*3.14
  • input is something called a function
  • input is a function that is built into Python
  • function call: input()
  • parameter: "What is the radius?"