Rounding in Python

Hello Friends,

I’m sorry to trouble you but I have seriously got the best help on this forum and I thank you all from the bottom of my heart.

This is the current situation,

On my assignment I need to round the value of my paint variable up to the next integer as opposed to decimal
for example if a room requires 2.2 gallons of paint to cover the walls, I need the value of paint to round up to 4,
I am trying to do this in the calculation stage and not in the output stage so the rounded number is located in memory.

CODE: SELECT ALL
paint = sq_ft / 300
round(paint,0)

That is what I have which is not working for me,

Thanks for your help.
http://crgsoft.com

Use math.ceil