strip()

本文涉及的产品
实时计算 Flink 版,5000CU*H 3个月
检索分析服务 Elasticsearch 版,2核4GB开发者规格 1个月
实时数仓Hologres,5000CU*H 100GB 3个月
简介: strip()

strip():去除字符串两端指定的字符(默认为空格)

string = "   Hello, World!   "
new_string = string.strip()
print(new_string)


相关文章
|
5月前
|
存储 设计模式 算法
《500 Lines or Less》(13)—— A 3D Modeller
《500 Lines or Less》(13)—— A 3D Modeller
82 18
Python中strip()、lstrip()和rstrip()方法的区别与用法详解
在Python中,字符串是一种常见的数据类型,而处理字符串时,经常会用到 strip()、lstrip() 和 rstrip() 这几个方法。它们都用于删除字符串开头和/或结尾的指定字符或字符集合,但在具体使用时有一些区别。
|
6月前
rstrip()
rstrip()
28 0
|
6月前
lstrip()
lstrip()
39 0
|
Python
Python:字符串基操_strip()/rstrip()/lstrip()_lower()/upper()_startswith()/endswith()_split()/rspilt()_join
Python:字符串基操_strip()/rstrip()/lstrip()_lower()/upper()_startswith()/endswith()_split()/rspilt()_join
221 0
Python3中strip()、lstrip()、rstrip()用法详解
Python3中strip()、lstrip()、rstrip()用法详解
split
split
75 0
|
Python
Python 字符串切割 str.split()和re.split()
Python 字符串切割 str.split()和re.split()
277 0
|
Python
strip
1131 0