im a bit confused, I have a list of 20 items, and I attempt to get the 20th one. But I get an error
example:
abc = 'abcdefghijklmnopqrstuvwxyz'
l = list()
for n in range(0, 20):
l.append(abc[n])
print(l[19+1])
but I get an indexError can someone tell me why?