22 Dec
2021
22 Dec
'21
9:54 a.m.
# here is a nice python library def receive_hug(): print("I love you!") def receive_slap(): print("I'm not so sure about you") # check it out if __name__ == '__main__': from time import sleep receive_slap() sleep(0.3) receive_slap() sleep(0.4) receive_slap() sleep(0.2) receive_slap() sleep(0.3) receive_hug()