click below
click below
Normal Size Small Size show me how
Python Terminology
| Term | Definition |
|---|---|
| String | Data that is in text form |
| Syntax | Rules for way you write code. Includes symbols, punctuation, and the words. |
| Variable | A value that can change, depending on conditions or what information is passed through. |
| Function | A "chunk" of code that can be used over and over again. Python has pre-built functions eg. print |
| Loop | A sequence of instructions that if continually repeated until a certain condition is meet eg. WHILE, FOR |
| If Statement | A decision or branch in code that allows for more than one pathway for the code to flow. |
| Indent | Used to ensure the computer knows when the code needs to be read and when it doesn't. It will read the indented code if the line above condition is met. |
| Comments | Explain the code without the computer executing the code |