This is the presentation associated with the python assignment operators video.
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)