►
Run
name = 'apple' index = 0 ch = name[index] print(f'name[{index}] : {ch}') index = 3 ch = name[index] print(f'name[{index}] : {ch}')
Output