Ответ:
def y(x):
return x**2 + 5
start = x = -2
end = 3
step = 0.5
while x <= end:
print(f'x = {x:.1f}, y = {y(x):.1f}')
x+=step
Объяснение:
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Verified answer
Ответ:
def y(x):
return x**2 + 5
start = x = -2
end = 3
step = 0.5
while x <= end:
print(f'x = {x:.1f}, y = {y(x):.1f}')
x+=step
Объяснение: