python单双引号区别是什么
在Python中我们都知道单引号和双引号都可以用来表示一个字符串,比如
str1 = 'python' str2 = "python"
str1和str2是没有任何区别的。但是如果遇到需要转义字符的情况,来看单引号和双引号的版本。
单引号
str3 = 'We all know that 'A' and 'B' are two capital letters.'
双引号
str4 = "We all know that 'A' and 'B' are two capital letters."
单引号需要加 '' 来让编译器判断目前是转义字符,而双引号方便了很多。
反之,如果字符串中有双引号,为了避免使用转义符,可以使用单引号来定义这个字符串。
str5 = 'The teacher said: "Practice makes perfect" is a very famous proverb.'
更多学习内容,请点击Python学习网。
来源:PY学习网:原文地址:https://www.py.cn/article.html