python trick big numbers visualisation

Solutions on MaxInterview for python trick big numbers visualisation by the best coders in the world

showing results for - "python trick big numbers visualisation"
Caterina
23 Jun 2018
1S = 10_000_000_000
2
3
4print(f'A big number is easyer to read like this {S:,}', #>>> 10,000,000,000
5      'or like this {:,}'.format(S), #>>> 10,000,000,000
6      'than as this',s) #>>> 10000000000