>>> 5.2 // 0.1
???
Answer: Not what you might think.
51.0
52.0
!!py print(5.2 // 0.001) print(5.2 // 0.01) print(5.2 // 0.1)
Language: py3 Source: print(5.2 // 0.001) print(5.2 // 0.01) print(5.2 // 0.1) Result: 5200.0 520.0 51.0
Doesn't make sense
Обсуждают сегодня