I can see multiple pages explaining how to format and print numbers in python, but is there a way to write code with large numbers in a readable way?
speed_of_light = 299 792 458 # metres
dist_to_andromeda = 2,537,497 # light years
dia_of_earth_at_eq = 12_756_320 # metres
EDIT: I found the last one working on py36, but what's the solution for those using py35? Isn't there a way other than comments which would be redundant?