6 lines
195 B
Python
Raw Normal View History

2025-10-10 16:07:00 +08:00
# str methods with explicit start/end pos
print("Привет".startswith("П"))
print("Привет".startswith("р", 1))
print("абвба".find("а", 1))
print("абвба".find("а", 1, -1))