def Validation(digits):
while not digits.isdigit():
digits = input("Please select an interger for this part")
digits = int(digits)
length_1 = input("What is the length of one of the sides?")
Validation(length_1)
length_2 = input("What is the length of another side?")
Validation(length_2)
answer = length_1 * length_2 / 2
我正在尝试使用验证用户输入的函数。最后它应该把它变成一个整数,这样它们就可以相乘了。但是,我收到错误:answer = length_1 * length_2 / 2 TypeError: can't乘以非int类型的'str'序列。我可以通过添加 int(length_1) 和 int(length_2) 来修复它,但是函数的重点是不要这样做
青春有我
交互式爱情
大话西游666
相关分类