Удалить .py

This commit is contained in:
SirtlanovaR 2025-11-17 06:53:47 +00:00
parent 0318e2c830
commit cde89d7968

12
.py
View File

@ -1,12 +0,0 @@
a = float(input("Введите первое число: "))
operation = input("+ или * ? ")
b = float(input("Введите второе число: "))
if operation == "+":
print(a+b)
elif operation == "*":
print(a*b)
else:
print("Ошибка")