January 26, 2021

Happy republic day


















from colorama import init 

from termcolor import colored 

import time 


for i in range (1,5):

print (colored('********************************* ','green'))

time.sleep(0.5)

for i in range (1,5):

print (colored('********************************* ','white'))

time.sleep(0.5)


for i in range (1,5):

print (colored('********************************* ','red'))

time.sleep(0.5)

for i in range (1,8):

print (colored('**'))

time.sleep(0.5)

print (colored ('\n\tHappy repbulic day ','yellow'))


No comments:

Post a Comment

find the cube of the range given digits. || codeAj

Find the cube of the range given Digits. Source Code r= int ( input ( "enter the range of digit : " )) def number_conter (n): ...