Python. Arithmetic operations. Module Math

11.1.1.6 use arithmetic operations when solving problems

Arithmetic operations

Подписывайтесь на канал "Программирование на Python"

Math Python
a+b a + b
a-b a - b
ab a * b
a:b a / b
ab a ** b
|a-b| abs(a - b)
a div b a // b
a mod b a % b

The round() function is used to round numbers to the desired digit.

Syntax round(number, digits) - Where number is a real number and digits is the number of decimal places (default 0).

Example, 

f = 4.4724087973
print(round(f, 2))  #display 4.47
print(round(f, 1))  #display 4.5
print(round(f))     #display 4

Module Math

math.ceil(X) – округление до ближайшего большего числа.
math.floor(X) - округление вниз.
math.trunc(X) - усекает значение X до целого.
math.exp(X) - eX.
math.pow(X, Y) - XY.
math.sqrt(X) - квадратный корень из X.
math.cos(X) - косинус X (X указывается в радианах).
math.sin(X) - синус X (X указывается в радианах).
math.tan(X) - тангенс X (X указывается в радианах).
math.pi = 3,1415926...
math.e = 2,718281...

Для использования функций библиотеки Math нужно в начале программы подключить ее.

Например, для использования функции вычисления квадратного корня из числа f:

import math # include library math
f = float(input())

print(round(math.sqrt(f), 2)) # use function sqrt() from library math 

Questions:

 

Exercises:

Ex. 1


Tasks

Tasks on Stepik.org course "Python Programming for NIS"

Категория: Programming languages | Добавил: bzfar77 (05.09.2021)
Просмотров: 3918 | Теги: adding, abs, multiplication, Modular, substract, Division, Power, Arithmetic | Рейтинг: 5.0/1
Всего комментариев: 0
avatar