Identify the output of the Python Command: print(22.0//5)
2023
Identify the output of the Python Command: print(22.0//5)
- A.
4.4
- B.
4
- C.
4.0
- D.
2
Attempted by 2962 students.
Show answer & explanation
Correct answer: C
4.0 Explanation: '//' is the floor division operator.