Python 字符串 String
和许多高级编程语言一样,字符串也是 Python 中最常用的数据类型。本文将介绍 Python 字符串的创建方法、字符串元素的访问、更新,以及字符串运算和格式化等内容。最后还列出了 Python 内 置的字符串对象操作函数。
创建与删除
在 Python 中有多种创建字符串的方法。
1、使用单引号引起来
>>> s1 = 'Hello \n World'
>>> print (s1)
Hello
World
2、使用双引号引起来的字符串
>>> s1 = "Hello \n World"
>>> print (s1)
Hello
World
3、在字符串前添加 r
表示原始字符串
>>> s1 = r"Hello \n World"
>>> print (s1)
Hello \n World
4、使用三个单引号引起来的字符串
>>> s1 = '''Hello
World
Nice to see you
'''
>>> print (s1)
Hello
World
Nice to see you
>>>
5、使用三个单引号引起来的字符串
>>> s1 = """Hello
World
Nice to see you
"""
>>> print (s1)
Hello
World
Nice to see you
>>>
当我们不需要某字符串对象时,可以使用 del
语句删除其引用。例如:
del s1