summaryrefslogtreecommitdiffstatshomepage
path: root/tests/unicode/unicode_pos.py
blob: 6a5982920aa3f9fdec1f81e37e18c1770a24bffe (plain) (blame)
1
2
3
4
5
# str methods with explicit start/end pos
print("Привет".startswith("П"))
print("Привет".startswith("р", 1))
print("абвба".find("а", 1))
print("абвба".find("а", 1, -1))