In this chapter we will be learning about Python assignment operators and some compound assignment operators supported in Python Python Assignment operators : Python Assignment operator is used for assigning the value of right operand to the left operand. #!/usr/bin/python num1 = 10 num2 = 20.20 num3 = 'A' print ("Line 1 - Value of …
Read More