Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
This is silly solution in Uncategorized category for Solution for Anything by lrekucki
def silly(*args):
return True
Silly = type("Silly", (), {"__%s__" % k: silly for k in (
"ne", "eq", "lt", "gt", "le", "ge")})
def checkio(anything):
return Silly()
if __name__ == '__main__':
import re, math
assert checkio({}) != [] , 'You'
assert checkio('Hello') < 'World', 'will'
assert checkio(80) > 81, 'never'
assert checkio(re) >= re, 'make'
assert checkio(re) <= math, 'this'
assert checkio(5) == ord, ':)'
print('NO WAY :(')
Nov. 20, 2012
Comments: