Python shell is great when we want to check something. Plus, it's absolutely safe to get Errors in shell because they won't affect your code. So, let's initialize a list:
my_list = [1, 2, 3]
and try to perform some operations on it in shell.
Which Errors does each line cause?