`if (True):` changes to `if(True):` Yes, that's non-pythonic code, but here's a better example: ```python x = [(1,1), (2,2)] if (1,1) in x: print("yay") ``` Changes to: ```python x = [(1,1), (2,2)] if(1,1) in x: print("yay") ```