1ahahfunny = ['ahah ', 'copy-', 'paste ', 'stack overflow', ' go ', 'brr']
2# The biggest index is 5. Reason why it isn't 6 is because according to the
3# computer index 0 = 1, 1 = 2, 2 = 3, etc...
4
5print(ahahfunny[0]) # It should print 'ahah', being the first index of the list
6
7n = 0
8
9for i in range(len(ahahfunny)):
10 print(ahahfunny[n] + '\n')
11 n += 1
12
13print(ahahfunny[0], ahahfunny[3], ahahfunny[4], ahahfunny[5])
14
15print("\nbrrr\tYou're welcome\tbrrr.")