Create a function named love that prints I love Python!. Then call the function twice.
love
I love Python!
def love(): print('I love Python!') love() love()