Ответ:
x, y = map(float,input("Enter x, y values.\n>> ").split())
ex = x*y
print("Apples:",ex)
x, y, s = map(float,input("Enter x, y, square_s values.\n>> ").split())
P = s*4
S = x*y
print(f"P = {P}.\nS = {S}.")
Объяснение:
Сподіваюсь що допомогла.
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
Ex #1:
x, y = map(float,input("Enter x, y values.\n>> ").split())
ex = x*y
print("Apples:",ex)
Ex #2:
x, y, s = map(float,input("Enter x, y, square_s values.\n>> ").split())
P = s*4
S = x*y
print(f"P = {P}.\nS = {S}.")
Объяснение:
Сподіваюсь що допомогла.