python strip() 函数

Posted minger_lcm

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python strip() 函数相关的知识,希望对你有一定的参考价值。

 

strip()用于把左右两边的空格去掉,也可以在括号中指定去掉哪些字符 例如:


>>> sql = input("sql>")
sql>
>>> sql = input("sql>")
sql>   saddsa
>>>
>>> print(sql)  # 两边有空格
   saddsa
>>>
>>> sql = input("sql>").strip()
sql>   sadsads
>>> print(sql)   # 去掉左右两边空格
sadsads
>>>

 

 


以上是关于python strip() 函数的主要内容,如果未能解决你的问题,请参考以下文章

Python的strip() 函数和 split() 函数

Python的strip() 函数和 split() 函数

python:strip()函数和split()函数

python中strip()函数的理解

python字符串常用函数:strip()

python中的strip()函数的用法