strip()
Posted leolaosao
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了strip()相关的知识,希望对你有一定的参考价值。
1.http://www.runoob.com/python3/python3-string-strip.html
用于去出字符串末尾指定的字符(默认为空格)。
string.lstrip() 在string的左边删除string
string.rstrip() 在string的右边删除string
2.
python去除字符串中间空格的方法
使用字符串函数split
a = ‘‘.join(a.split())
print(a)
helloworld
str.split(str="", num=string.count(str)).(分割字符串)
str -- 分隔符,默认为所有的空字符,包括空格、换行(\n)、制表符(\t)等。
num -- 分割次数。
datetime.strptime:将字符串转换为时间格式
detetime.strftime:将时间格式转化为字符船格式
以上是关于strip()的主要内容,如果未能解决你的问题,请参考以下文章
[单选题]php_strip_whitespace 函数返回什么?
python 2.7 使用xlsxwriter模块写入excel文件数据时,左上角出现绿色的小三角符号,无法生成表格怎么办?