您好,登錄后才能下訂單哦!
這篇文章主要介紹了如何用Python實(shí)習(xí)一棵圣誕樹的效果,具有一定借鑒價(jià)值,需要的朋友可以參考下。下面就和我一起來看看吧。
實(shí)圖:
效果如下:
Python實(shí)現(xiàn)的源代碼:
from random import randint from time import sleepimport coloramafrom colorama import Fore, Back, Stylecolorama.init()rnd2 = randint(1,60)def gentree():for x in range(1,30,2):rnd1 = randint(1,rnd2)if x == 1:ch = "$"elif rnd1 % 4 == 0:ch = "o"elif rnd1 % 3 == 0:ch = "j"elif rnd1 % 5 == 0:ch = "o"elif rnd1 % 7 == 0:ch = "j"else:ch ="*"if ch == "$":print(Fore.RED +"{:^33}".format(ch * x))elif ch == "o":print(Fore.RED +"{:^33}".format(ch * x))elif ch == "j":print(Fore.YELLOW +"{:^33}".format(ch * x))else:print(Fore.GREEN +"{:^33}".format(ch * x))print("{:^33}".format('|||'))print("{:^33}".format('|||')) print("{:^33}".format(' Merry_christmas '))sleep(.24)gentree()
我試了一下,用IDLE運(yùn)行這段代碼效果不咋滴。為了讓圣誕樹一直在閃,我決定用批處理的方式,寫一個(gè)bat腳本來運(yùn)行py文件。
bat代碼:
@echo offD:cd D:\Tree:start python Tree.pygoto start
所以一共是兩個(gè)文件:
環(huán)境參數(shù):
Python == 3.6.1
以上就是如何用Python實(shí)習(xí)一棵圣誕樹的效果的詳細(xì)內(nèi)容了,看完之后是否有所收獲呢?如果想了解更多相關(guān)內(nèi)容,歡迎來億速云行業(yè)資訊!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。