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

3 lines
139 B
Python
Executable File

#Можно подключить только 1 функцию из модуля
from random import randint as random
print(random(1,20))