我是靠谱客的博主 开朗发夹,最近开发中收集的这篇文章主要介绍Three Words [isalpha() 字母],觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

思路:

# Three Words
# 
def checkio(words: str) -> bool:
    words=(words.split())
    count_1=0
    for x in words:
        if x.isalpha():
            count_1+=1
        else:
            count_1=0
        if count_1==3:
            return True
    return False


#These "asserts" using only for self-checking and not necessary for auto-testing
if __name__ == '__main__':
    assert checkio("Hello World hello") == True, "Hello"
    assert checkio("He is 123 man") == False, "123 man"
    assert checkio("1 2 3 4") == False, "Digits"
    assert checkio("bla bla bla bla") == True, "Bla Bla"
    assert checkio("Hi") == False, "Hi"
    print("Coding complete? Click 'Check' to review your tests and earn cool rewards!")

扩展:

str.isalnum()# 所有字符都是数字或者字母 
str.isalpha()# 所有字符都是字母 
str.isdigit()# 所有字符都是数字 
str.islower()# 所有字符都是小写 
str.isupper() #所有字符都是大写 
str.istitle() #所有单词都是首字母大写,像标题 
str.isspace()# 所有字符都是空白字符、t、n、r

最后

以上就是开朗发夹为你收集整理的Three Words [isalpha() 字母]的全部内容,希望文章能够帮你解决Three Words [isalpha() 字母]所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(51)

评论列表共有 0 条评论

立即
投稿
返回
顶部