Jika Boolean Func

def bool_to_word(bool):
    # if boolean func
    if bool:
        return "Yes"
    else:
        return "No"
Fancy Frog