Python intro Flashcards
True or false, everything to the right of a number is run as code in python.
False
What is everything to the right of a number called in python? 
Comment
What is a Boolean variable?
A special type of variable that stores just true and false values. 
The following is an example of what kind of variable?
Is_billed = True
Print(is_billed)
True
Boolean variable
In Python, the value, we store in a variable can be a number, a set of characters or a Boolean variable. What would price be considered?
Number
The process of converting one data type to another data type is called ________?
Type conversion 
What are the two types of conversions in python?
- Implicit type conversion.
- Explicit type conversion. 
In what type of conversion does python automatically convert one data type to another in order to avoid data loss?
Implicit type conversion 
In what type of conversion can the user convert the data type of a variable to the required data type by using the built-in function?
Explicit type conversion
Built in functions: int(), float(), str(), etc.