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