什么是字符串?

字符串是由独立字符组成的一个序列(扁平序列)

定义一个字符串

定义一个字符串通常有一下几种方式

str = 'hello' # 使用单引号
str1 = "hello" # 使用双引号
str2 = """hello""" # 使用三个双引号
str3 = '''hello''' # 使用三个单引号

that's all

results matching ""

    No results matching ""