Source Code:
(back to article)
string_var = "hello" print(string_var[0]) # "h" print(string_var[1]) # "e"
Result:
Report an issue