Codewars note: Convert boolean values to strings 'Yes' or 'No'

2022/7/10 23:51:25

本文主要是介绍Codewars note: Convert boolean values to strings 'Yes' or 'No',对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

"My

>> False >> 'No'

>>True >> 'Yes'

Solutions:

1

def bool_to_word(boolean):
    return "Yes" if boolean else "No"

2

def bool_to_word(boolean):
    return ['No', 'Yes'][boolean]
def bool_to_word(boolean):
    return ['No', 'Yes'][boolean]

bool_to_word(False)


>>'No'

 



这篇关于Codewars note: Convert boolean values to strings 'Yes' or 'No'的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程