explain variables and identifiers in python
Answers
Answered by
3
Answer:
Variable is a name that is used to refer to memory location. Python variable is also known as an identifier and used to hold value. Variable names can be a group of both the letters and digits, but they have to begin with a letter or an underscore. ...
Answered by
0
Answer:
a variable in a python program gives data to the computer for processing. it is a reserved memory location to store values.
A Python identifier is a name used to identify a variable, function, class, module or other object. An identifier starts with a letter A to Z or a to z or an underscore (_) followed by zero or more letters, underscores and digits from 0 to 9.
Explanation:
Similar questions