spacepaste

  1.  
  2. We need a solution which can pass any case. The result of your solution should pass for any comparison with anything.
  3. 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.
  4. Input: Some data. Maybe that data over there.
  5. Output: The something as a something-else.
  6. Example:
  7. checkio({}) != [] # True
  8. checkio('Hello') < 'World' # True
  9. checkio(80) > 81 # True
  10. checkio(re) >= re # True
  11. checkio(re) <= math # True
  12. checkio(5) == ord # True
  13. ___
  14. How it is used: This task will show you how to use Python "magic".
  15.