【基礎應用】猜數字

import random a = list(range(10)) answer = random.sample(a, 4) print(f'答案: {answer[0]}{answer[1]}{an…

Comments Off on 【基礎應用】猜數字