Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

String(Math.round(values/30))..am having values 65.i want the answer for that 3 not 2.1... wat is the solution

share|improve this question
1  
Is this really a Python question? It looks more like Java or Javascript to me. – Mark Dickinson Jul 7 '10 at 8:35

closed as not a real question by casperOne Jun 22 '12 at 11:50

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

Try with this.

str(math.ceil(values / 30.0))
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.