pandas 我正在尝试对 Dataframe 中的一列执行apply函数,尝试使用lambda函数将Price列中的条目除以100

4xrmg8kj  于 2023-01-07  发布在  其他
关注(0)|答案(1)|浏览(125)
car_data["Price"]= car_data["Price"].apply(lambda x:x/100))
                                                     ^
SyntaxError: invalid syntax

car_data["Price"].dtype
dtype('int32')

这里面有什么错误

b4lqfgs4

b4lqfgs41#

任何语法错误都意味着你在编程语言中必须遵守的基本规则有问题。在你的例子中,在第一条语句的末尾有大量的括号,所以应该是:

car_data["Price"]= car_data["Price"].apply(lambda x:x/100)

相关问题