首頁 > 後端開發 > Python教學 > 如何使用Python隨機產生算數問題

如何使用Python隨機產生算數問題

PHPz
發布: 2023-05-09 23:55:13
轉載
1615 人瀏覽過

1、環境準備

隨機產生生成計算題,那我們便需要導入random模組。

環境安裝:python 3.8: 解釋器、pycharm: 程式碼編輯器。這次的內容很簡單不需要安裝什麼模組,直接安裝完Python可以直接使用的哈~

2、主程式

import random
def add():
    a=random.randint(0,10)
    b=random.randint(0,10)
    print(f"{a}+{b}=?")
    c=input(">")
    if a+b!=int(c):
        print("wrong!")
    else:
        print("right!")

def subtract():
    j = random.randint(0, 100)
    h = random.randint(0, 100)
    print(f"{j}-{h}=?")
    s = input(">")
    if j - h != int(s):
        print("wrong!")
    else:
        print("riht!")
def multiplication():
    x=random.randint(0,100)
    y=random.randint(0,100)
    print(f"{x}*{y}=?")
    z=input(">")
    if x*y!=int(z):
        print("wrong!")
    else:
        print("riht!")
def divide():
    l = random.randint(0, 100)
    m = random.randint(1, 100)
    print(f"{l}/{m}=?")
    o = input(">")
    if l / m != float(o):
        print("wrong!")
    else:
        print("riht!")
i=1
while i<=10:
    i+=1
    add()
    multiplication()
    subtrct()
    divide()
登入後複製

3、效果展示

如何使用Python隨機產生算數問題

以上是如何使用Python隨機產生算數問題的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:yisu.com
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板