Question: I need helps on this one, maydate.py. I also attached the addition information below. Thanks! ate.py hme syllabus schedule assignments practice OH FAQ 1. Task


I need helps on this one, maydate.py.
I also attached the addition information below.
Thanks!

ate.py hme syllabus schedule assignments practice OH FAQ 1. Task Write a file with one function: creepy. creepy should have two arguments, the ages of two people. It should return False if the two may date each other without being creepy, True. See dating.py for a definition of creepy. Return the Boolean values1 True and False, not the strings "True" and "False" Note: it is possible to solve this problem using if, but that is not encouraged. Your function should neither print nor ask for any input. You should not have any code outside of the function You may assume that we only invoke the function with the younger age 2 14 and the older age in the second position. 2. Example Invocations When you run maydate.py, nothing should happen. It defines a function, it does not run it. If in another file (which you do not submit) you write the following: import maydate print (maydate.creepy (18, 80)) print (maydate.creepy (50, 80)) print(type (maydate.creepy (50, 80))) you should get the following output: True False
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
