Python Arithmetic Operators Presentation


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

Download Presentation

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)
In [1]:
x = -8
y = -3
print(x//y)
2