I made my first ever program in python 3 could you guys see if its good?
This is my FIRST EVER program so please don't go too harsh thanks def add(x, y): return x + y def times(x, y): return x * y def divide(x, y): return x / y def subtract(x, y): return x - y print("Hi Sololearn, This is my first ever program (calculator) in python after 3 days of learning!") print("choose an option") print("1. add") print("2. divide") print("3. times") print("4. subtract") option = input("enter an option either 1, 2, 3, 4, = ") num1 = float(input("Enter first number: ")) num2 = float(input("Enter second number: ")) if option == '1': print(num1, "+" ,num2, "=" ,add(num1, num2)) if option == '2': print(num1, "/" ,num2, "=" ,divide(num1, num2)) if option == '3': print(num1, "x" ,num2, "=" ,times(num1, num2)) if option == '4': print(num1, "-" ,num2, "=" ,subtract(num1, num2))