This is a heavily interactive web application, and JavaScript is required. Simple HTML interfaces are possible, but that is not what this is.
Post
Rodrigo GirΓ£o SerrΓ£o ππ
mathspp.com
did:plc:4642ovs4svxe3k3echdm4rks
TIL that Python has three 3 format specifiers for thousands separators:
π `,` adds commas
π `_` adds underscores (works for other bases, too)
π `n` adds a locale-aware separator (might be nothing!)
x = 41241234
print(f"{x:,}") # 41,241,234
print(f"{x:_}") # 41_241_234
print(f"{x:n}") # 41241234
2025-05-26T14:36:56.547Z