str是什么数据类型
str是Python中的一种常见数据类型,代表“字符串”(string)类型,即由若干个字符组成的文本序列。在Python中,字符串是不可变的(immutable),也就是说,一旦创建后就不能再被修改了,只能通过创建新的字符串来操作。接下来,我们将从多个方面对str的特点进行详细阐述。
一、str的创建
字符串在Python中可以通过单引号、双引号、三个单引号或三个双引号来创建。其中,单双引号创建的字符串没有区别,三个引号用来创建多行的字符串,其内部可以包含换行符。
str1 = 'hello world!' str2 = "hello world!" str3 = '''hello world!'''
除了使用直接赋值创建字符串之外,还可以使用str()函数将其他类型的值转为字符串类型,例如:
num1 = 123 num2 = 4.56 str_num1 = str(num1) # '123' str_num2 = str(num2) # '4.56'
在Python 3.x中,字符串默认使用Unicode编码,因此可以直接使用中文字符,例如:
chinese_str = '你好,世界!'
二、str的操作
三、str的格式化
字符串格式化是将一个或多个值插入到字符串中的过程,通常会使用占位符(也称为格式化指示符)来指定应该被替换的值的类型和格式。在Python中,字符串格式化可以通过以下方式进行:
四、str的方法
除了前面提到的字符串操作之外,str还定义了许多常用的方法,例如:
1. upper()和lower()
返回字符串的大写或小写形式:
str1 = 'hello world' new_str1 = str1.upper() # 'HELLO WORLD' new_str2 = str1.lower() # 'hello world'
2. strip()和lstrip()和rstrip()
返回去除字符串两端空格后的结果,strip()表示去除两端空格,lstrip()表示去除左侧空格,rstrip()表示去除右侧空格。
str1 = ' hello world ' new_str1 = str1.strip() # 'hello world' new_str2 = str1.lstrip() # 'hello world ' new_str3 = str1.rstrip() # ' hello world'
3. split()
返回将字符串按照指定的分隔符(默认为空格)拆分后的结果:
str1 = 'hello,world' lst1 = str1.split(',') # ['hello', 'world']
4. join()
返回使用指定字符串将一个列表中的元素拼接起来的结果:
lst1 = ['hello', 'world'] str1 = ','.join(lst1) # 'hello,world'
5. count()
返回字符串中指定子串出现的次数:
str1 = 'hello world' count1 = str1.count('l') # 3 count2 = str1.count('world') # 1
还有许多其他有用的方法,例如replace()、find()、index()等,可以查看Python官方文档(https://docs.python.org/3/library/stdtypes.html#string-methods)进行了解。
鹏仔微信 15129739599 鹏仔QQ344225443 鹏仔前端 pjxi.com 共享博客 sharedbk.com
图片声明:本站部分配图来自网络。本站只作为美观性配图使用,无任何非法侵犯第三方意图,一切解释权归图片著作权方,本站不承担任何责任。如有恶意碰瓷者,必当奉陪到底严惩不贷!