码迷,mamicode.com
首页 > 编程语言 > 详细

Python-字符串处理函数

时间:2014-09-10 19:48:21      阅读:255      评论:0      收藏:0      [点我收藏+]

标签:replace   字符串   returns   

  1. 去除空格方法:

    1. "   xyz   ".strip()            # returns "xyz"  

    2. "   xyz   ".lstrip()           # returns "xyz   "  

    3. "   xyz   ".rstrip()           # returns "   xyz"  

    4. "  x y z  ".replace(‘ ‘, ‘‘)   # returns "xyz" 


本文出自 “Mr_Computer” 博客,请务必保留此出处http://caochun.blog.51cto.com/4497308/1550532

Python-字符串处理函数

标签:replace   字符串   returns   

原文地址:http://caochun.blog.51cto.com/4497308/1550532

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