• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/5

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

5 Cards in this Set

  • Front
  • Back

Body Syntonic

Body syntonic means experiences related to knowledge of your body. You can use your knowledge of how to move your body to help you understand how to move the turtle objects.

Comment

A comment describes one or more lines of code. Comments are ignored by the computer. A comment in Python starts with #. The computer will ignore everything from the start of the comment to the end of that line.

Function

A function returns a value. An example of a function is Screen()which creates and returns a screen (drawing space) object.

Object

Turtles are objects in Python. Objects can have data and behavior. Aturtle object knows its heading (data) and can go forward and turn (behavior).

Procedure

A procedure does an action, but doesn’t return a value. Anexample of a procedure is forward(100) which makes the turtle go forward by100 pixels.