這篇將透過5個實例來說明python的語法。
import random
print("1~10的隨機整數:",random.randint(1,10))
print("0~1的隨浮點數:",random.random())
以下是使用random亂數模組的一些函數
import random
s = "random"
print("5~10之間的隨機浮點數:",random.uniform(5,10))
print(f"{s}中隨機選一個字元:",random.choice(s))
以下是使用random亂數模組的一些函數
import random
s = "random"
fruits = ['banana', 'watermelon', 'lemon', 'strawberry']
print(f"{s}中隨機取3個字元:", random.sample(s,3))
print(f"{fruits}隨機洗牌後:",random.shuffle(fruits),fruits)
以下是使用random亂數模組的一些函數
import time
print(time.localtime())
print(time.ctime())
以下是使用time時間模組的一些函數
import time
print("現在:",time.ctime())
time.sleep(3)
print("3秒後:",time.ctime())
以下是使用time時間模組的一些函數