Python Trick: Make Big Numbers More Readable #python

preview_player
Показать описание
In this Python trick, we'll show you a way to make big numbers more readable. This is a great trick to use if you're new to Python or if you just need to make big numbers a little easier to read.

This Python trick is easy to follow and will help you make big numbers more manageable. After watching this video, you'll be able to read big numbers more easily and easily understand what they're saying! #python #pythonshorts #pythonforbeginners
Рекомендации по теме
Комментарии
Автор

You can use numerise to make it even more readable for example:
-import numerise
num = 10_000_000
num = num.numerise
print(num)

output:
10m

Quadruple-H-