PYTHON1 - getting started with python

Cards (10)

  • print()
    The easiest way to send a message to the screen or other display device
  • Creating a variable
    Connect the name and the value with an equal sign =

    • Use variables to remember important information
  • Variables
    Numerical values can be stored in
  • Accessing variable value
    You can access the value stored in a variable by calling its name
  • Numerical data should not be surrounded by quotation marks
  • Updating the variable is called reassigning the variable
  • Bugs
    Errors in code
  • Code execution
    Executed line by line from top to bottom
  • Code execution
    Interrupted by bugs