Why test cases are fail :/ | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Why test cases are fail :/

Its working good but why test cases are fail num1 = abs(int(input(''))) num2 = abs(int(input(''))) num3 = abs(int(input(''))) num4 = abs(int(input(''))) Sum = (num1 + num2 + num3 + num4) Average = ((num1 + num2 + num3 + num4) / 4) Product = (num1 * num2 * num3 * num4) a = [num1, num2, num3, num4] MAX = (max(a)) MIN = (min(a)) print(Sum) print(Average) print(Product) print(MAX) print(MIN)

29th Jan 2021, 10:48 AM
Amir.mahoti
Amir.mahoti - avatar
1 Answer
+ 2
Try to remove the empty string inside the input: >> num1 = abs(int(input()) Or if this still won't work, please send more details about the challenge. Thanks!
29th Jan 2021, 10:54 AM
noteve
noteve - avatar