mirror of
https://github.com/micropython/micropython.git
synced 2025-12-16 09:50:15 +01:00
7 lines
202 B
Python
7 lines
202 B
Python
print("Привет".find("т"))
|
|
print("Привет".find("П"))
|
|
print("Привет".rfind("т"))
|
|
print("Привет".rfind("П"))
|
|
print("Привет".index("т"))
|
|
print("Привет".index("П"))
|