Python 是一種通用高級編程語言,可用于開發各種應用程序。下面是一個簡單的 Python 練習題:
print("Enter two numbers: ") num1 = int(input()) num2 = int(input()) print("Select an operation (+, -, *, /): ") oper = input() if oper == '+': print(num1, "+", num2, "=", num1 + num2) elif oper == '-': print(num1, "-", num2, "=", num1 - num2) elif oper == '*': print(num1, "*", num2, "=", num1 * num2) elif oper == '/': if num2 == 0: print("Error: Denominator cannot be zero.") else: print(num1, "/", num2, "=", num1 / num2) else: print("Error: Invalid operator.")
這個程序提示用戶輸入兩個數并選擇操作符。然后,利用簡單的 if…elif…else 邏輯來計算結果。
通過這個練習,你可以學習如何使用 Python 的輸入、輸出、變量和控制流語句。
上一篇php occ