This is the presentation associated with the python arithmetic operators video.
[dflip id=”2150″ ][/dflip]
Python Arithmetic Operators Video Question
This is the Question that was asked in the python arithmetic operators video
Question : What is the output of the following code:
In [ ]:
x = -8
y = -3
print(x//y)
[bg_collapse view=”button-blue” color=”#ffffff” icon=”eye” expand_text=”Show Answer” collapse_text=”Hide Answer” ]
In [1]:
x = -8
y = -3
print(x//y)
[/bg_collapse]