Python生成不重複N個隨機數 發佈日期: 2021 年 6 月 30 日 作者: Sky Leong import random #random.seed(10) #若指定seed,則每次生成結果相同 list_1 = random.sample(range(1, 10), 3) 從1-10中生成3個不重覆數字 list_1.sort() print(list_1) 相關文章[Python] list內容亂序[Python] 發送含附件emailPython存取google sheet (更新版)VS Code react插件[Python] url encode透過Telegram API發送圖片 (本機上傳)