Source Code:
(back to article)
string = "Hello World" char = "W" position = string.index(char) print(position)
Result:
Report an issue