Python 字符串深度总结( 五 )

Output:
Monday Tuesday WednesdayWednesday Tuesday MondayTuesday Wednesday MondayMonday Tuesday Wednesdayf-strings 更具可读性,并且它们比 str.format() 方法实现得更快 。因此,f-string 是字符串格式化的首选方法
处理引号和撇号
撇号 (') 在 Python 中表示一个字符串 。为了让 Python 知道我们不是在处理字符串,我们必须使用 Python 转义字符 () 。因此撇号在 Python 中表示为 ' 。与处理撇号不同,Python 中有很多处理引号的方法 。它们包括以下内容:
# 1. Represent string with single quote (`""`) and quoted statement with double quote (`""`)quotes_one =  '"Friends don't let friends use minibatches larger than 32" - Yann LeCun'print(quotes_one)# 2. Represent string with double quote `("")` and quoted statement with escape and double quote `("statement")`quotes_two =  ""Friends don't let friends use minibatches larger than 32" - Yann LeCun"print(quotes_two)# 3. Represent string with triple quote `("""""")` and quoted statment with double quote ("")quote_three = """"Friends don't let friends use minibatches larger than 32" - Yann LeCun"""print(quote_three)Output:
"Friends don't let friends use minibatches larger than 32" - Yann LeCun"Friends don't let friends use minibatches larger than 32" - Yann LeCun"Friends don't let friends use minibatches larger than 32" - Yann LeCun写在最后字符串作为编程语言当中最为常见的数据类型,熟练而灵活的掌握其各种属性和方法,实在是太重要了,小伙伴们千万要实时温习,处处留心哦!




推荐阅读