“Python Print Trainling Zeros” Ответ

Python Print Trainling Zeros

# Change the .7 to .n decimal digits including zeros you want to round to:
print('{:.7f}'.format(5.39120))
# >>> '5.3912000'
Powerful Penguin

Как добавить в питоне сплюсные нули

text = "hello"
print(text.zfill(10))
Output: '00000hello'
Trewqy Zebra

Ответы похожие на “Python Print Trainling Zeros”

Вопросы похожие на “Python Print Trainling Zeros”

Больше похожих ответов на “Python Print Trainling Zeros” по Python

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

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