我在pandas df中有一个名为“Last Form”的列,其中包含各种数字。该列中还有一个-符号和字母U
例如
我怎么才能摆脱-还有你?
我试过了
df['Last Form'] = df['Last Form'].replace('U', '')
df.replace('-', 0, inplace=True)
当我使用>=2
过滤结果时,我一直得到这个错误。
TypeError: '>=' not supported between instances of 'str' and 'int'
1条答案
按热度按时间fcy6dtqo1#
用途:
或者,对于数字: