summaryrefslogtreecommitdiffstatshomepage
path: root/tests/basics/python36.py
blob: 20ecd9227d42b4f46cc5cbbbab789a12f629a121 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
# tests for things that only Python 3.6 supports

# underscores in numeric literals
print(100_000)
print(0b1010_0101)
print(0xff_ff)

# underscore supported by int constructor
print(int('1_2_3'))
print(int('0o1_2_3', 8))