'和之间没有语义差异
"。
'如果字符串包含
",反之亦然,则可以使用,Python将执行相同的 *** 作。如果字符串包含两个字符串,则必须转义其中的一些(或使用三引号
"""或
''')。(如果这两个
'和
"是可能的,Python和很多程序员似乎更喜欢
',虽然)。
>>> x = "string with ' quote">>> y = 'string with " quote'>>> z = "string with ' and " quote">>> x"string with ' quote">>> y'string with " quote'>>> z'string with ' and " quote'
about
strand
repr:
str将从给定的对象 创建
一个字符串(在这种情况下为字符串本身),并从该对象
repr创建
一个“表示字符串”(即,包含一组字符串的字符串)引号)。简而言之,之间的区别
str,并
repr应该是
str很容易理解 的用户
,并
repr很容易理解 为Python 。
另外,如果您在交互式外壳程序中输入任何表达式,Python会自动回
repr显结果。这可能有点令人困惑:在交互式外壳中,执行此 *** 作
print(x)时所
看到的
是
str(x);使用时
str(x),看到的是
repr(str(x)),使用时
repr(x),看到的
repr(repr(x))(因此双引号)。
>>> print("some string") # print string, no result to echosome string>>> str("some string") # create string, echo result'some string'>>> repr("some string") # create repr string, echo result"'some string'"
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)