2023-06-30 00:25:42 +08:00

10 lines
145 B
Python

a, b = 'test asd'.split()
assert a == 'test'
assert b == 'asd'
a, b = 'test asd'.split(' ')
assert a == 'test'
assert b == 'asd'
print('PASS')