Error in python
Can someone help me with my bug in my code? This is the part: #exceptions something = input() # take an input try: # do something with the input something = (int(something)) # if it's not a number it's a ValueError print(something) print(someting) # make a mistake print(movies[something]) except ValueError: # if input isn't a number print("type in a number") except IndexError: # if number is too high print("number must be under 6") except NameError: # if I used a wrong variable print("something is wrong with something ;)") try: # do something with the input print(something + 1) # if it's not a number it's a TypeError print(something # another mistake except TypeError: # if input isn't a number print("type in a number") except SyntaxError: print("There's a bug in the code") https://sololearn.com/compiler-playground/chE9gTsNZeHl/?ref=app