Variables Flashcards
Are used to store a value, and these values have a data
type.
Variables
It is when you create a variable and assign it a value.
Variable Declaration
This can be done if you want to specify the data type of a variable
Casting
True or False. Variable name must start with a letter or the underscore character
True
True or False.
A variable name cannot start with a number
True
True or False.
A variable name can only contain alpha-numeric characters and underscores (A-z, 0-9, and _ )
True
True or False.
Variable names are case-sensitive (age, Age and AGE are three different variables)
True
reserved words in Python
Keywords
True or False.
Keywords cannot be used as a variable name, function name or any other identifier.
True
True or False.
Keywords are case sensitive.
True
True or False.
Python allows you to assign values to multiple variables in one line
True