操作で算術演算子(ユーザーが文字列として入力)を使用するにはどうすればよいですか?操作自体を印刷することはできますが、ソリューションを印刷したいと思います。
これが私の不器用な試みです:
# Initialise variables
x = 2
y = 3
# Prompt the user for an arithmetic operator
operator = input("Please enter *, /, +, or - : ")
# Calculate the operation
result = (str(x) + operator + str(y))
# Display the result
print(result)