Python Assignment Operators Presentation


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

[dflip id=”2241″ ][/dflip]

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)

[bg_collapse view=”button-blue” color=”#ffffff” icon=”eye” expand_text=”Show Answer” collapse_text=”Hide Answer” ]

In [1]:
a = 8
a //= 3
print(a)
2

[/bg_collapse]