欧美一区二区三区,国内熟女精品熟女A片视频小说,日本av网,小鲜肉男男GAY做受XXX网站

python的簡單聯系題

李昊宇1年前7瀏覽0評論

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 的輸入、輸出、變量和控制流語句。