import random data = [1, 6, 16, 25, 29] # choice:隨機從列表中選取出一個數值 result = random.choice(data) print(result) ...
確定! 回上一頁