ValueError: could not convert string to float: 'Partner, Mr. Austen'
时间: 2024-06-13 07:04:07 浏览: 140
ValueError: Could not find a format to read the specified file in mode ‘i’
这个错误是因为字符串'Partner, Mr. Austen'无法被转换为浮点数。在使用float()函数时,参数必须是数值型的字符串,比如'1.2'、'3'、'-1.01'等等。如果参数不符合要求,就会抛出ValueError异常。因此,如果你想将'Partner, Mr. Austen'转换为浮点数,就会出现这个错误。
阅读全文