mirror of
https://github.com/micropython/micropython.git
synced 2025-07-21 13:01:10 +02:00
7 lines
202 B
Python
7 lines
202 B
Python
print("Привет".find("т"))
|
|
print("Привет".find("П"))
|
|
print("Привет".rfind("т"))
|
|
print("Привет".rfind("П"))
|
|
print("Привет".index("т"))
|
|
print("Привет".index("П"))
|