網(wǎng)站滾動效果怎么做的上海互聯(lián)網(wǎng)公司排名
1. 原始字符串 (Raw String) - r
或 R
使用 r
或 R
前綴,可以告訴 Python 字符串中的所有反斜杠都是普通字符,而不是轉義字符。這在處理文件路徑、正則表達式等情況下非常有用。
path = r'C:\new_folder\test.txt' # 原始字符串
2. 格式化字符串 (Formatted String) - f
或 F
使用 f
或 F
前綴,可以在字符串中嵌入表達式。這些表達式在運行時會被計算,并將結果插入到字符串中。這種字符串被稱為 f-string,是在 Python 3.6 引入的。
name = "Alice"
age = 30
message = f'{name} is {age} years old.' # 格式化字符串
3. Unicode 字符串 - u
或 U
在 Python 3 中,所有字符串默認都是 Unicode,因此 u
前綴通常不再需要。但是,在 Python 2 中,它用于創(chuàng)建 Unicode 字符串。
# 在 Python 3 中:
text = u'Hello, world!' # Unicode 字符串# 在 Python 2 中:
text = u'Hello, world!' # Unicode 字符串
4. 字節(jié)字符串 (Byte String) - b
或 B
使用 b
或 B
前綴來創(chuàng)建字節(jié)字符串,而不是文本字符串。字節(jié)字符串用于處理二進制數(shù)據(jù),常用于文件 I/O 和網(wǎng)絡傳輸。
data = b'Hello, world!' # 字節(jié)字符串
5. 三重引號 (Triple Quotes)
三重引號可以用于定義跨多行的字符串。這種字符串可以用三重單引號 ('''
) 或三重雙引號 ("""
) 定義。
multiline_str = """This is a
multiline string that spans
multiple lines."""
6. 組合使用修飾符
可以組合使用字符串修飾符。例如,既要使用原始字符串,又要進行格式化:
path = r'C:\new_folder\test.txt'
name = "Alice"
message = fr'{name}\'s file is located at {path}'
print(message)
# Output: Alice's file is located at C:\new_folder\test.txt
示例代碼
# 使用原始字符串
raw_path = r'C:\Users\Example\Documents\file.txt'
print(raw_path)# 使用格式化字符串
name = "John"
age = 28
greeting = f'Hello, {name}. You are {age} years old.'
print(greeting)# 使用 Unicode 字符串
unicode_str = u'こんにちは世界' # 這在 Python 3 中默認就是 Unicode
print(unicode_str)# 使用字節(jié)字符串
byte_str = b'This is a byte string'
print(byte_str)# 使用多行字符串
multiline_str = """This is a string
that spans multiple
lines."""
print(multiline_str)# 組合使用原始和格式化字符串
file_path = r'C:\Users\Example\Documents'
filename = "file.txt"
full_path = fr'{file_path}\{filename}'
print(full_path)