python36.py 266 B

12345678910
  1. # tests for things that only Python 3.6 supports, needing floats
  2. # underscores in numeric literals
  3. print(1_000.1_8)
  4. print('%.2g' % 1e1_2)
  5. # underscore supported by int/float constructors
  6. print(float('1_2_3'))
  7. print(float('1_2_3.4'))
  8. print('%.2g' % float('1e1_3'))