Python numeric literals: Using underscores to group digits

Want to make Python numbers more readable? Use _ between digits (not at the start or end):

x = 1_000_000
y = 2_000
z = 1_000.234_567