1. What are the assignment Operators that can be used in Python?
Answers
Answered by
1
Answer:
Explanation:
assignment operators are used to assign a value for a variable in python
for example "=" is an operator used in assigning a value to a variable
another example a+=b
here it has the same meaning as writing a=a+b
similarly =- , *= etc.
hope this helps you
thank you
Answered by
1
Answer:
Assignment operators are used in Python to assign values to variables. a = 5 is a simple assignment operator that assigns the value 5 on the right to the variable a on the left.
Similar questions