What is the print function
Displays information on the screen
every function is followed by ()
1/6
| Term | Definition |
|---|---|
| What is the print function | Displays information on the screen every function is followed by () |
| How does the print function work | Passes a string through the function, takes the string and displays it on the screen |
| What is a string? | sequence of characters surrounded by a pair of "" |
| what is a variable | each variable has a value which is information associated with the variable |
| What are the rules of variables? | - only letters, numbers and underscores - only start with a letter or underscore - no spaces, underscores to seperate words - dont use python kewords/ functions as name |