首页
技术小册
AIGC
面试刷题
技术文章
MAGENTO
云计算
视频课程
源码下载
PDF书籍
「涨薪秘籍」
登录
注册
第一章: 什么是字符串
第二章:ASCII 表与 Python 字符串字符
第三章:字符串属性
零索引
不变性
重复
索引和切片
第四章:字符串方法
str.split
str.splitlines
str.strip
str.zfill
str.isalpha
str.find和str.rfind
str.index
str.maketrans
str.endswith
第五章:字符串操作
循环遍历一个字符串
字符串和关系运算符
检查字符串的成员资格
字符串格式
处理引号和撇号
当前位置:
首页>>
技术小册>>
Python合辑3-字符串用法深度总结
小册名称:Python合辑3-字符串用法深度总结
处理引号和撇号 撇号 `(')` 在 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 ```
上一篇:
字符串格式
该分类下的相关小册推荐:
Python合辑2-字符串常用方法
Python数据分析与挖掘实战(上)
Python合辑8-变量和运算符
Python合辑13-面向对象编程案例(上)
Python与办公-玩转Excel
Python编程轻松进阶(二)
Python合辑14-面向对象编程案例(下)
Python合辑1-Python语言基础
Python与办公-玩转PDF
剑指Python(万变不离其宗)
Python合辑7-集合、列表与元组
Python机器学习基础教程(下)