Python3 string — 字符串常量和模板
在Python中,字符串常量可以用单引号(')、双引号(")、三引号(''')或者(""")来定义。三引号允许一个字符串跨越多行,并可包含换行符、制表符以及其他任何字符。
字符串模板是一种可以插入变量的字符串。Python使用str.format()
方法或者新的f-string
方式来实现字符串模板。
以下是一些示例代码:
# 字符串常量
string1 = 'Hello, World!'
string2 = "Python is fun."
string3 = '''This is a multi-line
string using triple quotes.'''
# 字符串模板 - 使用 str.format() 方法
name = 'Alice'
greeting = 'Hello, {0}!'.format(name)
# 字符串模板 - 使用 f-string (Python 3.6+)
f_greeting = f'Hello, {name}!'
# 输出结果
print(string1)
print(string2)
print(string3)
print(greeting)
print(f_greeting)
输出将会是:
Hello, World!
Python is fun.
This is a multi-line
string using triple quotes.
Hello, Alice!
Hello, Alice!
评论已关闭