Created
August 30, 2021 05:43
-
-
Save pamelafox/3e782b91438502661edd27bf02c1ffe5 to your computer and use it in GitHub Desktop.
Has Free Lobe
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
This function should only return True | |
if both the father allele and the mother allele are "G". | |
""" | |
def has_free_lobe(father_allele, mother_allele): | |
""" | |
>>> has_free_lobe("G", "g") | |
False | |
>>> has_free_lobe("g", "G") | |
False | |
>>> has_free_lobe("g", "g") | |
False | |
>>> has_free_lobe("G", "G") | |
True | |
""" | |
return 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment