try: and except: are followed by an indented block of code. We can use pass if we want nothing to be executed after except:.
try:
except:
pass
Make sure to pick :, followed by :, and finally pass.
: