Python - 5 Cool Tricks

1. Readable long number If you are declaring a long number (eg. 10 million) in your code, it would be much harder for other guys to read it (10000000 ❌). So to avoid this, python has a special feature for you. You can split the numbers with "_". This...


Published: Feb 13, 2021

View my post on Hashnode