Скрин работы в приложении
Объяснение:
#!/usr/bin/env python3
import math
while True:
try:
line = input("Введите x: ")
if not line:
break
x = float(line)
line = input("Введите y: ")
y = float(line)
z = (x + math.pi * pow(y, 1/3)) / (y + math.pi)
print("z(x,y)=", z)
except ValueError as err:
print(err)
continue
Скрин работы в приложении
Объяснение:
#!/usr/bin/env python3
import math
while True:
try:
line = input("Введите x: ")
if not line:
break
x = float(line)
line = input("Введите y: ")
if not line:
break
y = float(line)
z = (x + math.pi * pow(y, 1/3)) / (y + math.pi)
print("z(x,y)=", z)
except ValueError as err:
print(err)
continue