January 25, 2021

The flag of NEPAL using python









 




for i in range (1 , 10):

print(" *" * (i))

time .sleep(0.5)

for i in range(1 , 10):

print ( " *"*(i))

time .sleep(0.5)

for i in range (1,8):

print (" *")

time .sleep(0.5)

print ("\n\n\tThe NEPAL")

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): ...