0
Code coach
Please what is wrong with this code? Someone that has done this challenge help me please. houses = int(input()) #your code goes here frac = 2/houses percent = frac * 100 perIsDollar = round(percent) print(perIsDollar)
1 RĂ©ponse
+ 1
The question asks to "round up" the result, so you shouldn't use round() but use ceil() from math module instead.