Python Trick Big nombres 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
Thoughtful Trout