#!/usr/bin/env python3 # -*- coding: utf-8 -*- import random min = 1 max = 10 ret = random.randint(min, max) print(ret) ...
確定! 回上一頁