MODULE 1 Flashcards
refers to the spaces at the beginning of a code line.
Indentation
instructs Python to pause the program until the user has typed something and pressed Return/Enter.
input command
are used to store a value, and these values have a data type.
Variables
reserved words in Python
Keywords
values mean True or False
Boolean
integers are whole numbers, can be positive or negative
Integers
numbers with decimal, can be positive or negative
Float
get the data type of a variable with this function
type function
can be used to explain Python code, used to make the code more readable, used to prevent execution when testing code, and can be placed at the end of a line, and Python will ignore the rest of the line.
Comments