We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea2c936 commit 63143c9Copy full SHA for 63143c9
tests/unicode/unicode_pos.py
@@ -0,0 +1,5 @@
1
+# str methods with explicit start/end pos
2
+print("Привет".startswith("П"))
3
+print("Привет".startswith("р", 1))
4
+print("абвба".find("а", 1))
5
+print("абвба".find("а", 1, -1))
0 commit comments