ответвлено от main/python-labs
11 строки
168 B
Python
11 строки
168 B
Python
def alpha():
|
|
print('****ALPHA****')
|
|
t=input('Значение t=')
|
|
return t
|
|
|
|
def beta(q):
|
|
import math
|
|
expi=q*math.pi
|
|
return math.exp(expi)
|
|
|