您好,登錄后才能下訂單哦!
這篇文章主要介紹了python中如何使用time和random模塊,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。
主要介紹 time,random模塊;不用死記。首先說一下什么是模塊。。。 import time 有些朋友,開始比迷惑的,但是后面聊到類(屬性,方法),包會好一點,我們這里沒這么快說到,慢慢來,但是為了方便你記憶。。。最及簡單的是..... 你知道 x.py是你寫的python腳本;如果你在同一個目錄下 定義了另外一個 time.py。你import time就直接調用了(這也是,我們需要注意的,定義x.py時候名字不要跟自帶的模塊名字,第3方模塊一樣的名字,除非你自己想重寫他的模塊。。。。牛逼) import time ###導入time的模塊,time.py文件的 變量(屬性);函數(方法)都可以使用。。。。 import random ###導入隨機數模塊。 print(time.time()) ###打印現在的 時間戳。。。如何轉換?搜索一下吧。 time.sleep(3) ###睡3秒 print(random.randint(1,100)) ###是不是打印一個 1 到 100 的整數? number = range(1,100) ###number 變成一個列表了。 print(random.sample(number,3)) ###是不是抽了3個數字? ####################我們模擬一個打架吧。。。 people_a_life = random.randint(150,200) people_b_life = random.randint(150,200) people_a_kill_power = random.randint(50,80) people_b_kill_power = random.randint(50,80) print("打手1\n 血量:%s 殺傷力:%s"%(people_a_life,people_a_kill_power)) time.sleep(2) print("打手2\n 血量:%s 殺傷力:%s"%(people_b_life,people_b_kill_power)) while people_a_life >= 0 and people_b_life >=0: people_b_life = people_b_life -people_a_kill_power print("開始 打手1的***:%s, 打手2:%s"%(people_a_kill_power,people_b_life)) time.sleep(2) people_a_life = people_a_life -people_b_kill_power print("開始 打手1的***:%s, 打手2:%s"%(people_b_kill_power,people_a_life)) time.sleep(1) if people_a_life > people_b_life: print("打手1 win") elif people_b_life > people_a_life: print("打手2 win") else: print("打平")
感謝你能夠認真閱讀完這篇文章,希望小編分享的“python中如何使用time和random模塊”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。