What is the output of the following ?
pe = "python easy" print(pe[5])
n
e
o
IndexError
print(pe[5]) will print 5 th index which is "n"
print(pe[5])
Comment here: