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 的输入、输出、变量和控制流语句。