car_data["Price"]= car_data["Price"].apply(lambda x:x/100)) ^ SyntaxError: invalid syntax car_data["Price"].dtype dtype('int32')
这里面有什么错误
b4lqfgs41#
任何语法错误都意味着你在编程语言中必须遵守的基本规则有问题。在你的例子中,在第一条语句的末尾有大量的括号,所以应该是:
car_data["Price"]= car_data["Price"].apply(lambda x:x/100)
1条答案
按热度按时间b4lqfgs41#
任何语法错误都意味着你在编程语言中必须遵守的基本规则有问题。在你的例子中,在第一条语句的末尾有大量的括号,所以应该是: