Python中表示字符串的三种方法

时间:2022-09-12 23:27:05

Python中有三种方式表示字符串

第一种方法

使用单引号(‘)

用单引号括起来表示字符串,例如:

?
1
2
str='this is string';
print str;

第二种方法

使用双引号(“)

双引号中的字符串与单引号中的字符串用法完全相同,

例如:

?
1
2
str=”this is string”;
print str;

第三种方法

使用三引号(”')

利用三引号,表示多行的字符串,可以在三引号中*的使用单引号和双引号,

例如:

?
1
2
3
4
str=”'this is string
this is pythod string
this is string”'
print str;

以上就是对Python 三种表示方法的总结,如有疑问请留言或者到本站社区交流讨论,感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!

原文链接:http://blog.csdn.net/zxm317122667/article/details/54694948