隨機範圍小數和隨機範圍整數

我爱你的發表於2024-06-01
import random
random_num = random.randint(1,100)
random_float = round(random.uniform(0.5, 1.5), 1)

相關文章