码迷,mamicode.com
首页 > 其他好文 > 详细

1、strip()

时间:2017-06-21 11:31:10      阅读:106      评论:0      收藏:0      [点我收藏+]

标签: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 <<<<

1、strip()

标签:pytho   bin   class   int   print   color   strip   span   auth   

原文地址:http://www.cnblogs.com/yujiemeigui/p/7057881.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!