Computer Science, asked by kumaraman5137, 1 month ago

in Python variables can be thought of as?​

Answers

Answered by YaoiGod1
2

Answer:

Python variable is a symbolic name that is a reference or pointer to an object. Once an object is assigned to a variable, you can refer to the object by that name

Explanation:

for eg: A= 10

then A is a variable

Answered by pragyakirti12345
0

Answer: reference to an object

Explanation:

In Python, variables are a symbolic name which is a reference or pointer to an object. The variables are used to denote objects by the name of variables . Variables in python can contain, numeric data (integer or real number), string or objects.

#SPJ3

Similar questions