Rumah > Artikel > pembangunan bahagian belakang > Python中表示字符串的几种方法介绍
这篇文章主要介绍了Python中表示字符串的三种方法的相关资料,需要的朋友可以参考下
Python中有三种方式表示字符串
第一种方法
使用单引号(‘)
用单引号括起来表示字符串,例如:
str='this is string'; print str;
第二种方法
使用双引号(“)
双引号中的字符串与单引号中的字符串用法完全相同,
例如:
str=”this is string”; print str;
第三种方法
使用三引号(”')
利用三引号,表示多行的字符串,可以在三引号中自由的使用单引号和双引号,
例如:
str=”'this is string this is pythod string this is string”' print str;
Atas ialah kandungan terperinci Python中表示字符串的几种方法介绍. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!