how to visualize a list in python code example
Example: python trick big numbers visualisation
S = 10_000_000_000
print(f'A big number is easyer to read like this {S:,}', #>>> 10,000,000,000
'or like this {:,}'.format(S), #>>> 10,000,000,000
'than as this',s) #>>> 10000000000