标签:pytho bin class int print color strip span auth
1 #!/usr/bin/env python 2 # -*- coding:utf-8 -*- 3 # Author:Lisa Li 4 5 s = ‘ Hello world ‘ 6 print(‘原字符串>>>‘,s,‘<<<‘) 7 s1 = s.strip() 8 print(‘更改后的字符串>>>‘,s1,‘<<<<‘)
输出结果:
原字符串>>> Hello world <<<
更改后的字符串>>> Hello world <<<<
标签:pytho bin class int print color strip span auth
原文地址:http://www.cnblogs.com/yujiemeigui/p/7057881.html