Explain a) Variables b) Data types c) Operators of Python
Answers
Answer:
a) Variable may refer to: Variable (computer science), a symbolic name associated with a value and whose associated value may be changed. Variable (mathematics), a symbol that represents a quantity in a mathematical expression, as used in many sciences. Variable (research), a logical set of attributes
b)a particular kind of data item, as defined by the values it can take, the programming language used, or the operations that can be performed on it.
ç)Python divides the operators in the following groups:
Arithmetic operators.
Assignment operators.
Comparison operators.
Logical operators.
Identity operators.
Membership operators.
Bitwise operators.
Explanation:
BTS ARMY
Answer:
a)Variables are data values that can change when the user is asked a question, for example, their age. Variables may change during program execution. A variable is a memory location . It has a name that is associated with that location. The memory location is used to hold data.
b)A data type or simply type is an attribute of data which tells the compiler or interpreter how the programmer intends to use the data. A data type constrains the values that an expression, such as a variable or a function, might take.
c)Operators are special symbols in Python that carry out arithmetic or logical computation. The value that the operator operates on is called the operand. For example: >>> 2+3 5. Here, + is the operator that performs addition.
IF YOU FOUND IT HELPFUL THEN PLS MARK AS BRAINLIEST