KIOSHIROI / KIOSHIROI.github.io

BNUer cs-learning road
https://kioshiroi.github.io/
MIT License
5 stars 0 forks source link

7. python字符串 #16

Open KIOSHIROI opened 6 months ago

KIOSHIROI commented 6 months ago

https://kioshiroi.github.io/python_7_string/

字符串处理

字符串是Python中最常用的数据类型之一。理解和掌握字符串处理方法是编写高效Python代码的基础。

  1. 字符串创建与基本操作

    字符串可以使用单引号、双引号或三引号创建。

创建字符串

str1 = 'Hello' str2 =