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

How do you truncate all numbers after a decimal in Python 3?

For example truncate 3.444 to be just 3.

share|improve this question

2 Answers

up vote 2 down vote accepted

By converting it to an int:

>>> num = 3.444
>>> int(num)
3
share|improve this answer
A more comprehensive explanation would be appreciated I guess ;) – ismail Jan 26 at 16:54
1  
@cartman: Not sure; this is a site for programmers; can we request a modicum of CS knowledge here? – Martijn Pieters Jan 26 at 16:55
1  
Why would it need to be more comprehensive? Integers can't have decimal places, period. – Ignacio Vazquez-Abrams Jan 26 at 16:56
@MartijnPieters you are right but, I meant an explanation like 3.444 is a floating point number and you convert it to an integer etc. – ismail Jan 26 at 16:58
'int' did the trick; thanks again – Fluxcapacitor Jan 26 at 17:08
>>> import math
>>> num = 3.4444
>>> math.trunc(num)
3
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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