Python 入門指南 5.0

exercise2701.py

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# 從 random 引入 shuffle
from random import shuffle

# 執行部分
if __name__ == '__main__':
    # 建立數字串列
    numbers = list("0123456789")
    # 攪亂數字串列
    shuffle(numbers)
    # 建立猜數字遊戲的答案
    answer = ""
    length = 0
    for i in numbers:
        answer += i
        length += 1
        if length == 4:
            break
    # 印出猜數字遊戲的答案
    print(answer)

# 檔名: exercise2701.py
# 說明:《Python入門指南》的練習
# 網站: http://kaiching.org
# 作者: 張凱慶
# 時間: 2023 年 11 月

回到練習題目
上一頁 exercise2611.py
回 Python 入門指南 5.0 首頁
下一頁 exercise2702.py
回 Python 教材首頁
回程式語言教材首頁