0
Need Help Please
In Halloween question of Code coach - Will you please tell me where I go wrong in this code: houses = int(input("Enter a number:")) TB = 1 DB = 2 if int(DB / houses * 100 == 67): print("67 percentage") else: print("33 percentage") This is my first attempt and I am stuck here!!🤨
6 Respuestas
+ 2
houses = int(input())
dollarbill = 2 / houses * 100
from math import ceil
print (ceil(dollarbill ))
+ 3
Thanks for all helping 🤗
0
Saturday Abraham Oyeabuan n bro I have 1 question for you where do you learn about the ceil function in math module as It haven't taught in the course yet.......
0
you will learn about it before completing the course.