mirror of
https://github.com/pocketpy/pocketpy
synced 2025-10-20 19:40:18 +00:00
7 lines
105 B
Python
7 lines
105 B
Python
a = r'1\232\\\13'
|
|
|
|
assert a == '1\\232\\\\\\13'
|
|
|
|
b = r'测\试'
|
|
assert len(b) == 3
|
|
assert b == '测\\试' |