在Python中想要输出一句话,如下
1 a='hello world' 2 print a 3 //打印出的是hello world 4 5 print 'hello \n world' 6 //打印出的是 7 //hello 8 //world 9 print '''hello10 world11 good 12 bye'''13 //打印出的是14 //hello15 //world16 //good17 //bye
如果想要输出换行的字符串,可以再字符串中添加转义字符 '\n',或者使用''' 或"""将有格式输出的字符串包裹起来。
另外''' 或者""" 还有多行注释的作用。
字符串的切片
1 str='abcde' 2 print a[0] 3 //输出a 4 print a[1] 5 //输出b 6 print a[0]+a[1] 7 //输出ab 8 9 切片:10 print str[1:4]11 //输出bcd12 print str[1:]13 //输出bcde14 print str[1::2]15 //输出bd16 print str[-1:-4:-1]17 //输出edc18 19 str[x:y:z] 其中str是字符串 ,x 是切片起始点,y是切片终点,z是步长20 21 所以用Python很容易实现字符串的反转22 print str[-1:-6:-1]23 //输出edcba