请问这段python代码哪里出错了,错误代码:ValueError: invalid literal for int() with base 10: ','?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了请问这段python代码哪里出错了,错误代码:ValueError: invalid literal for int() with base 10: ','?相关的知识,希望对你有一定的参考价值。
# 求梯形面积输出器(only support 'int')
def four_different_angle(base_up, base_down, height=3):
triangle = float((base_up + base_down) * height * 1 / 2)
return triangle
num1 = 1, 2, 3
a = type(num1)
print(num1[0])
num = list(
input('''input your triangle's num
(height_默认:3,May change it with else beta)
(形如:a,b,c/input own name,such as : base_up == 3 and so on ) : '''))
num = four_different_angle(int(num[0]), int(num[1]), height=int(num[2]))
print(num)
为了解决这个问题,您可以在输入字符串时使用分隔符(例如,空格或逗号)将其分解为三个单独的数字,并将它们存储在列表中。然后,您可以在调用 four_different_angle 函数时将每个数字传递给该函数作为参数。
def four_different_angle(base_up,base_down, height=3):
triangle = float((base_up+ base_down)* height*1/2)
return triangle
num = list(map(int, input("input your triangle's num (height_默认:3,May change it with else beta) (形如:a b c/input own name,such as: base_up ==3 and so on):").split()))
num = four_different_angle(*num)
print(num)
Python 用于用均值估算缺失值,帮我试试这段代码,但出错了
【中文标题】Python 用于用均值估算缺失值,帮我试试这段代码,但出错了【英文标题】:Python for imputing missing values with mean, help me I try this code but error 【发布时间】:2021-09-20 17:24:39 【问题描述】:df.loc[(data['Perkotaan'].isnull()==True),'Perkotaan']=df['Perkotaan'].mean()
df.loc[(data['Perdesaan'].isnull()==True),'Perdesaan']=df['Perdesaan'].mean()
KeyError Traceback(最近一次调用最后一次) /usr/local/lib/python3.7/dist-packages/pandas/core/indexes/base.py in get_loc(self,key,method,tolerance) 2897 尝试: -> 2898 返回 self._engine.get_loc(casted_key) 2899 除了 KeyError 错误:
pandas/_libs/index.pyx in pandas._libs.index.IndexEngine.get_loc()
pandas/_libs/index.pyx in pandas._libs.index.IndexEngine.get_loc()
pandas/_libs/hashtable_class_helper.pxi in pandas._libs.hashtable.PyObjectHashTable.get_item()
pandas/_libs/hashtable_class_helper.pxi in pandas._libs.hashtable.PyObjectHashTable.get_item()
KeyError: 'Perkotaan'
上述异常是以下异常的直接原因:
KeyError Traceback(最近一次调用最后一次) 2帧 /usr/local/lib/python3.7/dist-packages/pandas/core/indexes/base.py in get_loc(self,key,method,tolerance) 第2898章 2899 除了 KeyError 作为错误: -> 2900 从错误中引发 KeyError(key) 2901 2902 如果容差不是无:
KeyError: 'Perkotaan'
【问题讨论】:
【参考方案1】:您的数据框分配给 df 或 data?
df.loc[(data['Perkotaan'].isnull()==True),'Perkotaan']=df['Perkotaan'].mean()
我认为您必须将其更改为 df 或仔细检查您选择的列。 “Perkotaan”不是您的数据框的一列。
【讨论】:
以上是关于请问这段python代码哪里出错了,错误代码:ValueError: invalid literal for int() with base 10: ','?的主要内容,如果未能解决你的问题,请参考以下文章
Python 用于用均值估算缺失值,帮我试试这段代码,但出错了