如何在Python中使用字符串【每日一个知识点第352期-Python】
a、使用单引号(‘)
用单引号括起来表示字符串,例如:
str=’this is string’;
print str;
b、使用双引号(“)
双引号中的字符串与单引号中的字符串用法完全相同,例如:
str=”this is string”;
print str;
c、使用三引号(”’)
利用三引号,表示多行的字符串,可以在三引号中自由的使用单引号和双引号,例如:
str=”’this is string
this is pythod string
this is string”’
print str;