what is the other name of variables in python
a- identifier
b- literal
c- operator
Answers
Explanation:
variable can have a short name (like x and y) or a more descriptive name (age, carname, total_volume). Rules for Python variables: A variable name must start with a letter or the underscore character. A variable name cannot start with a number.
Answer:
a) Variable name is known as identifier.The few rules that you have to follow while naming in the variables in Python.The name of the variable which is num is called identifier.
b) A fixed numeric or non numeric value is called a literal.It can be defined as number text or other data.They are also known as constant.
c) An operator is a symbol or a word that perform some kind of operation on the the given values and returns the result. They are also known as Python Arithmetic Operator.
HOPE IT HELPS YOU.....