Learn IT English through real Python docs
An immersive trainer where students read authentic documentation, decode real error messages, build technical vocabulary and practise β exactly like a professional developer.
Strings can be indexed, with the first character having index 0:
word = 'Python'word[0] β 'P'word[-1] β 'n'
word[-1] return for 'Python'?