num1 = float(input("Enter the first number: "))
num2 = float(input("Enter the second number: "))
operation = input("Which operation are you performing? (a/s/m/d) ")
if operation == "a":
print("{} + {} = {}".format(num1, num2, num1+num2))
elif operation == "s":
print("{} - {} = {}".format(num1, num2, num1-num2))
elif operation == "m":
print("{} * {} = {}".format(num1, num2, num1*num2))
elif operation == "d":
print("{} / {} = {}".format(num1, num2, num1/num2))
I hope this helps!
C. Healing brush
That’s the answer
<span>Charts are inserted into an excel spreadsheet using the commands in the charts group on the Insert tab on the ribbon.
There, on the Insert tab, you will find many options when it comes to the things that you want to insert into your Excel spreadsheet, such as images, tables, and charts, among other things.</span>