mirror of
https://github.com/micropython/micropython.git
synced 2026-01-04 11:10:14 +01:00
7 lines
202 B
Python
7 lines
202 B
Python
print("Привет".find("т"))
|
|
print("Привет".find("П"))
|
|
print("Привет".rfind("т"))
|
|
print("Привет".rfind("П"))
|
|
print("Привет".index("т"))
|
|
print("Привет".index("П"))
|