使用函数 randLmt100() 生成两个 100 以内的随机数, 使用函数 randOper() 随机生成 ’+’、 ’-’、 ’*’、 ’/’ 四个字符 中的其中之一, 并将其赋给字符变量oper;
时间: 2023-11-06 19:07:15 浏览: 60
好的,可以试试这样的代码:
```python
import random
def randLmt100():
return random.randint(1, 100)
def randOper():
operators = ['+', '-', '*', '/']
return random.choice(operators)
num1 = randLmt100()
num2 = randLmt100()
oper = randOper()
print(num1, oper, num2)
```
这段代码中,`randLmt100()` 函数使用 `random` 模块中的 `randint()` 函数生成 1 到 100 之间的随机整数。`randOper()` 函数使用 `random` 模块中的 `choice()` 函数从 `operators` 列表中随机选取一个操作符。
最后的 `print()` 函数输出两个随机数和一个随机操作符,可以用来作为一个简单的数学题目。
阅读全文