| A | B |
| executing a program | runnning a program |
| IDLE | the Python shell |
| to open the Python editor | go to File-then New Window |
| Python rule #1-spaces | no spaces in variable name |
| Python rule #2-numbers+words | can't have a number in front of word |
| Python rule #3-case sensitive | you can add upper and lower case letters but must stay same throughout |
| integer | a whole number |
| float | a decimal |
| exponent | number multiplied by itself |
| variable | attaches a 'name' to something else |
| value | what is assigned to your variable |
| raw_input | an important function that allows users to input data |
| operators | symbols used to calculate or assign value-*, +, - or / |
| division sign in Python | a slash sign / |
| multiplication sign in Python | an asterisk * |
| result of "3" + "4" in Python | 34 |
| result of 3 + 4 (without quotation marks) | 7 |
| result of "3 + 4" in Python | 3+4 |