Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Python 3で小数点以下のすべての数値をどのように切り捨てますか?
たとえば、3.444を切り捨てて3にします。
intそれを:に変換することによって
int
>>> num = 3.444 >>> int(num) 3
>>> import math >>> num = 3.4444 >>> math.trunc(num) 3