We need a solution which can pass any case. The result of your solution should pass for any comparison with anything. You should write the function "checkio" which is called with one argument, the result will be compared with some other data (==, !=, etc) and the result of that comparison should be True. Input: Some data. Maybe that data over there. Output: The something as a something-else. Example: checkio({}) != [] # True checkio('Hello') < 'World' # True checkio(80) > 81 # True checkio(re) >= re # True checkio(re) <= math # True checkio(5) == ord # True ___ How it is used: This task will show you how to use Python "magic".