補充 - 常用模組

隨機

https://docs.python.org/zh-tw/3/library/random.html

import random as rm print(rm.randint(1,1000)) print(rm.randint(1,10000))

日期

https://docs.python.org/zh-tw/3/library/datetime.html#date-objects

import datetime as dt print(dt.date.today())