What is the difference between / and // operators?

Questions & AnswersCategory: PythonWhat is the difference between / and // operators?
Geek Boy Staff asked 2 years ago

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.