“Function () функция в Python” Ответ

круглый питон

round(number, decimalPlaces = 0)
MunchDuster

Круглый печать Python

#round print
process = 1345 * 0.75

print(f"The result can be shown as {round(process, 1)}")  #output:1008.8
print(f"The result can be shown as {round(process, 2)}")  #output:1008.75
Strange Swiftlet

Function () функция в Python

>>> print(round(89.92345,2)), round(89.725))
89.92 90
Outrageous Ostrich

Ответы похожие на “Function () функция в Python”

Вопросы похожие на “Function () функция в Python”

Больше похожих ответов на “Function () функция в Python” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования