Ads

Wish Happy New Year 2026 using Python Turtle Graphics | 2026 New Year Wish programming in Python Language | Python Turtle Graphics

  

Wish Happy New Year 2026 using Python Turtle Graphics



HELLO VIEWERS YOU MIGHT BE INTERESTED IN THIS POST.

Your welcome to our website COMPUTER SOFT SKILLS, after reading this article you can make this in just 2 minutes.
THIS IS PYTHON PROGRAMMING TO Wish Happy New Year 2026.

Python Turtle Graphics
YOU CAN COPY THIS CODE AND SAVE IN YOUR SYSTEM.
This Programming created by Rohit, owner of Computer Soft Skills. Yes you read it right! You can make that type of Project easily in Python application.


#___________ WELCOME ALL OF YOU ON COMPUTER SOFT SKILLS CHANNEL __________
#................ PYTHON PROGRAM TO WISH HAPPY NEW YEAR 2026 .........................

from turtle import*
from random import*
from time import sleep
title("Computer Soft Skills")
bgcolor("black")
setup(width=500, height=800)
stamp()
speed(1000)

#create fireworks
stars_pos=[(-150, -325), (150, -320), (-150, 325), (120, 320)]
colors =["orange","blue","red","yellow"]
for i in range(len(stars_pos)):
    x = stars_pos [i] [0]
    y = stars_pos [i] [1]
    up()
    color(colors[i])
    goto(x,y)
    for i in range(23):
        down()
        forward(50)
        up()
        forward(23)
        stamp()
        backward(50)
        left(72)
        right(5)
        hideturtle()
goto(0,150)
color("Blue")
write("Happy", font=("arial black", 65, "normal"), align="center")
goto (0,80)
sleep(1)
color("yellow")
write("New", font=("arial black", 50, "normal"), align="center")
goto(0,0)
sleep(1)
color("Red")
write("Year", font=("arial black", 50, "normal"), align="center")
goto(0,-100)
sleep(1)
color("Pink")
write("2026", font=("arial black", 65, "normal"), align="center")
goto(8,-200)
sleep(1)
color('red')
write("Computer Soft Skills", font=("Verdana", 15, "normal"), align="center")
goto(-500,-500)
sleep(1)
mainloop()



#______________ I HOPE YOU LIKE THIS PROGRAMMING _______________

#________________LIKE _________________SHARE _________________SUBSCRIBE ________________


If you like this Python Programming then share it with your friends, Thanks.


Post a Comment

0 Comments