2018-06-01 15:21:46 +01:00
|
|
|
# tests for things that only Python 3.6 supports, needing floats
|
|
|
|
|
|
|
|
# underscores in numeric literals
|
|
|
|
print(1_000.1_8)
|
2020-03-23 02:26:08 +00:00
|
|
|
print("%.2g" % 1e1_2)
|
2018-06-01 15:21:46 +01:00
|
|
|
|
|
|
|
# underscore supported by int/float constructors
|
2020-03-23 02:26:08 +00:00
|
|
|
print(float("1_2_3"))
|
|
|
|
print(float("1_2_3.4"))
|
|
|
|
print("%.2g" % float("1e1_3"))
|