home
Learn
screen_rotation
str = "Hello World" print(str[0]) # H print(str[1]) # e print(str[-1]) # d print(str[-2]) # l
Program Output
H e d l