从pandas序列中剥离"$"符号的方法有多种。以下是其中几种常见的方法:
方法一:使用str.replace()函数
import pandas as pd
# 创建一个示例序列
s = pd.Series(['$100', '$200', '$300'])
# 使用str.replace()函数将"$"替换为空字符串
s = s.str.replace('$', '')
print(s)
输出:
0 100
1 200
2 300
dtype: object
推荐的腾讯云相关产品:腾讯云云服务器(CVM) 产品介绍链接地址:https://cloud.tencent.com/product/cvm
方法二:使用str.strip()函数
import pandas as pd
# 创建一个示例序列
s = pd.Series(['$100', '$200', '$300'])
# 使用str.strip()函数去除字符串两端的"$"符号
s = s.str.strip('$')
print(s)
输出:
0 100
1 200
2 300
dtype: object
推荐的腾讯云相关产品:腾讯云云数据库 MySQL 版(TencentDB for MySQL) 产品介绍链接地址:https://cloud.tencent.com/product/cdb_mysql
方法三:使用str.lstrip()函数
import pandas as pd
# 创建一个示例序列
s = pd.Series(['$100', '$200', '$300'])
# 使用str.lstrip()函数去除字符串左侧的"$"符号
s = s.str.lstrip('$')
print(s)
输出:
0 100
1 200
2 300
dtype: object
推荐的腾讯云相关产品:腾讯云对象存储(COS) 产品介绍链接地址:https://cloud.tencent.com/product/cos
方法四:使用str.rstrip()函数
import pandas as pd
# 创建一个示例序列
s = pd.Series(['$100', '$200', '$300'])
# 使用str.rstrip()函数去除字符串右侧的"$"符号
s = s.str.rstrip('$')
print(s)
输出:
0 100
1 200
2 300
dtype: object
推荐的腾讯云相关产品:腾讯云云函数(SCF) 产品介绍链接地址:https://cloud.tencent.com/product/scf
领取专属 10元无门槛券
手把手带您无忧上云