What is the difference between / and // operators?
What is the difference between /
and //
operators?
a. These operators can be used interchangeably.
b. The //
operator does a normal division, and the /
operator does an integer division.
c. The /
operator does a normal division, and the //
operator does an integer division.