Files
learning/python/модули/модули.py
2022-05-06 00:49:26 +03:00

16 lines
410 B
Python
Executable File
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
#Подключение модуля, связанного с математикой
import math
#as позволяет в будущем использовать модуль при помощи псевдонима
import random as r
#вывод числа e
print(math.e)
#вывод числа пи
print(math.pi)
#вывод косинуса
print(math.cos(30))
print(r.randint(0, 20))