python 中单引号和双引号的区别

1.在python 中,单引号和双引号都可以用来表示字符串。他们的主要区别在于,如果字符串本身包含了单引号,这应该使用双引号来表示字符串,反之亦然

print("I'm a string with a single quote.")
print('I"m a string with a double quote.')

你可能感兴趣的:(python,开发语言)