Computer Science, asked by kvishwanathan051, 1 day ago

1. What are the assignment Operators that can be used in Python?​

Answers

Answered by sdp3076
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 itzarmygirl21
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