字符串的三种定义方式

1
2
3
4
5
6
# 单引号定义,双引号定义,# 字符串的三种定义方式
```python
# 单引号定义,双引号定义,三引号定义
str1 = '单引号'
str2 = "双引号"
str3 = """三引号"""

转义字符\

字符串拼接和字符串格式化

1
2
3
4
5
6
7
# 字符串拼接
str1 = 'hello'
str2 = "world"
str3 = 'hello' + ' ' + "world"

# 字符串格式化
str4 = '%s %s' % (str1, str2)

占位符

  1. %s
  2. %d
  3. %f

可以对浮点类型进行精度控制,方法同C语言类型

字符串快速格式化

1
2
3
name = 'rminit'
str = "hello"
print(f"{str},{name}")