python中对话引号的输出
作者:互联网
在python中输出这样的对话
输出he’s a pirate
描述
在两行中分别输出以下两个句子。
he’s a pirate
She said, "Hurry up."
输入格式
无输入
输出格式
he’s a pirate
She said, “Hurry up.”
问题是引号不能被编译器自动判断是对话引号还是token,所以必须用转译符号将其正确输出
print("he's a pirate\nShe said, \"Hurry up.\"")
# \"即输出"
然而python不同于c,前者还提供了一个更简单的方法
print('he's a pirate\nShe said, "Hurry up."')
#使用单引号圈定输出范围,就不会受双引号干扰了
标签:输出,said,python,引号,up,对话,Hurry,pirate,he 来源: https://blog.csdn.net/weixin_43888800/article/details/113789374