+ 2
Help me with phyton
https://www.sololearn.com/coach/4?ref=app In this challenge my answer is: houses = int(input()) print(int(round((2/houses)*100))) First two test cases are correct đŻ, others are incorrect đ but they are locked đ. So I can't figure out the problem đ. Please help me.
2 Answers
+ 5
As the output format required, "a percentage value ROUNDED UP..."
+ 5
import math library and use ceil instead of round.