Basic Python Concepts Flashcards
1
Q
What is a Variable ?
A
A variable is place holder that holds information
2
Q
What is a value?
A
Value is the information stored in the variable
3
Q
What is an expression?
A
An expression combines values, variables, operators, and functions to produce values
4
Q
What is a Statement?
A
Each line of code in Python is a Statement
5
Q
What is a function?
A
a function is a reusable block of code that performs a specific action
6
Q
A