Python Assignment Operators Presentation


This is the presentation associated with the python assignment operators video.

Download Presentation

Python Assignment Operators Video Question

This is the question that was asked in the python assignment operators video

Question : What is the output of the following code:
In [ ]:
a = 8
a //= 3
print(a)
In [1]:
a = 8
a //= 3
print(a)
2