溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

如何用Python實(shí)習(xí)一棵圣誕樹的效果

發(fā)布時(shí)間:2020-12-25 10:30:27 來源:億速云 閱讀:291 作者:栢白 欄目:編程語言

這篇文章主要介紹了如何用Python實(shí)習(xí)一棵圣誕樹的效果,具有一定借鑒價(jià)值,需要的朋友可以參考下。下面就和我一起來看看吧。

實(shí)圖:

如何用Python實(shí)習(xí)一棵圣誕樹的效果

效果如下:

如何用Python實(shí)習(xí)一棵圣誕樹的效果

如何用Python實(shí)習(xí)一棵圣誕樹的效果


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è)文件:

如何用Python實(shí)習(xí)一棵圣誕樹的效果

環(huán)境參數(shù):
Python == 3.6.1

以上就是如何用Python實(shí)習(xí)一棵圣誕樹的效果的詳細(xì)內(nèi)容了,看完之后是否有所收獲呢?如果想了解更多相關(guān)內(nèi)容,歡迎來億速云行業(yè)資訊!

向AI問一下細(xì)節(jié)

免責(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)容。

AI