Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Me + you = <3 solution in Creative category for I Love Python! by ermichin158
def i_love_python():
great_language = True
easy_for_use = True
PYTHON = great_language and easy_for_use;
cool_guys = True
interesting_missions = True
help_in_programming = True
bad_checking = False
CHECKIO = interesting_missions and cool_guys and help_in_programming and not bad_checking
LOVE = True # =3
return "I love Python!" if PYTHON and CHECKIO == LOVE else ":(" # Best moment ^^
if __name__ == '__main__':
#These "asserts" using only for self-checking and not necessary for auto-testing
assert i_love_python() == "I love Python!"
Oct. 28, 2015
Comments: