首页
技术小册
AIGC
面试刷题
技术文章
MAGENTO
云计算
视频课程
源码下载
PDF书籍
「涨薪秘籍」
登录
注册
第一章: 什么是字符串
第二章:ASCII 表与 Python 字符串字符
第三章:字符串属性
零索引
不变性
重复
索引和切片
第四章:字符串方法
str.split
str.splitlines
str.strip
str.zfill
str.isalpha
str.find和str.rfind
str.index
str.maketrans
str.endswith
第五章:字符串操作
循环遍历一个字符串
字符串和关系运算符
检查字符串的成员资格
字符串格式
处理引号和撇号
当前位置:
首页>>
技术小册>>
Python合辑3-字符串用法深度总结
小册名称:Python合辑3-字符串用法深度总结
str.isalpha() 如果字符串中的所有字符都是字母,该方法返回True;否则返回 False: ``` # Alphabet string alphabet_one = "Learning" print(alphabet_one.isalpha()) # Contains whitspace alphabet_two = "Learning Python" print(alphabet_two.isalpha()) # Contains comma symbols alphabet_three = "Learning," print(alphabet_three.isalpha()) ``` Output: ``` True False False ``` 如果字符串字符是字母数字,str.isalnum() 返回 True;如果字符串字符是十进制,str.isdecimal() 返回 True;如果字符串字符是数字,str.isdigit() 返回 True;如果字符串字符是数字,则 str.isnumeric() 返回 True 如果字符串中的所有字符都是小写,str.islower() 返回 True;如果字符串中的所有字符都是大写,str.isupper() 返回 True;如果每个单词的首字母大写,str.istitle() 返回 True: ``` # islower() example string_one = "Artificial Neural Network" print(string_one.islower()) string_two = string_one.lower() # converts string to lowercase print(string_two.islower()) # isupper() example string_three = string_one.upper() # converts string to uppercase print(string_three.isupper()) # istitle() example print(string_one.istitle()) ``` Output: ``` False True True True ```
上一篇:
str.zfill
下一篇:
str.find和str.rfind
该分类下的相关小册推荐:
Python3网络爬虫开发实战(下)
Python编程轻松进阶(五)
Python神经网络入门与实践
Python合辑1-Python语言基础
Python自动化办公实战
Python合辑4-130个字符串操作示例
Python合辑12-面向对象
Python合辑2-字符串常用方法
Python合辑14-面向对象编程案例(下)
Python合辑9-判断和循环
Python面试指南
Python数据分析与挖掘实战(下)