2021年2月18日 星期四

Python_Random基本用法

 import random

#參考https://docs.python.org/3/library/random.html


print("隨機產生0~小於之間一個數字:",random.random())


print("隨機產生0~99之間一個數字:",random.randint(0,99))


print("隨機產生0~99之間一個數字:",random.randrange(100))


print("隨機產生0~100之間一個偶數:",random.randrange(0,101,2))


print("隨機抽取集合中10個數字或文字,總共抽3個:",random.sample([0,'one',2,3,4,5,'six',7,8,9], k=3))

執行結果:



沒有留言:

張貼留言

Ubuntu-Journalctl查看系統日誌

 近期所使用Ubuntu系統24小時開著,進行跑Python程式使用,但跑個2~3天,排程就無法正常寄信,SSH連線也無法正常連線,經查看後為wifi連線問題,暫先使用腳本排程進行重開wifi。 以下為記錄Journalctl指令。 使用Journalctl來從系統日誌上查看看問...