Code 29: trunc() in Python | Remove Decimal part in a value | Math Module | 365 days in Code

Опубликовано: 29 Январь 2021
на канале: Code House
1,034
12

Mistake - Ignore the "floor", it will be trunc.
The math.trunc() method returns the truncated integer part of a number.
It simply remove the decimals part.
Ex - trunc of 7.9 will be 7.
Ex - trunc of 19.1 will be 19.
Ex - trunc of -7.3 will be -7.

Code -
import math # Import the math module
print(math.trunc(7.9)) # 7
print(math.trunc(19.1)) # 19
print(math.trunc(-7.3)) # -7

Thanks


На этой странице сайта вы можете посмотреть видео онлайн Code 29: trunc() in Python | Remove Decimal part in a value | Math Module | 365 days in Code длительностью часов минут секунд в хорошем качестве, которое загрузил пользователь Code House 29 Январь 2021, поделитесь ссылкой с друзьями и знакомыми, на youtube это видео уже посмотрели 1,034 раз и оно понравилось 12 зрителям. Приятного просмотра!