Как правильно выполнить функциональную программу на Python?
Это мой код.
def introduction(): print('this program will give you the result of multiplication, division and addition of two numbers') def num1(): n1=int(input('please enter th first no.')) return n1 def num2(): n2=int(input('please enter the first no.')) return n2 def a(num1,num2): get_sum=num1+num2 return get_sum def pyt(): introduction() #this will give you the two numbers number1=num1() number2=num2() a(number1,number2) print(a) pyt()
Что я уже пробовал:
Я искал в других интернет ресурсах
Patrice T
В чем проблема с вашим кодом ?