Subscribe Our Channel

header ads

Search This Blog

Tuesday, December 30, 2025

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 __________

#........... WISH HAPPY NEW YEAR USING PYHON TURTLE GRAPHICS ......................


import turtle
import random
import colorsys

# Turtle Window
wn = turtle.Screen()
wn.setup(800,750)
wn.title("Computer Soft Skills: HAPPY NEW YEAR")

turtle.bgcolor('LIGHTPINK')
turtle.tracer(2)
t=turtle.Turtle()
t.hideturtle()
t.pensize(3)
hue=0.5

t.penup()
t.hideturtle()

#___CRACKERS_______________

for i in range (50):
     x=random.randint(-400,500)
     y=random.randint(-200,450)
     z=random.randint(-300,600)
     t.speed(80)
     t.penup()
     t.goto(x,y)
     t.pendown()

     size=random.randint(10,180)

     for i in range(36):
          color=colorsys.hsv_to_rgb(hue,1,1)
          t.pencolor(color)
          t.fd(size)
          t.bk(size)
          t.lt(10)
          hue +=0.01

     def write(message,pos):
          x,y=pos
          t.penup()
          t.goto(x,y)
          t.speed(100)
          style=('ARIAL BLACK',50,'normal')
          t.write(message,font=style)
     write('HAPPY',(-80,280))
     write('NEW',(-50,200))
     write('YEAR',(-50,100))
     write('2026',(-50,0))

turtle.done()








No comments:

Post a Comment

Featured Post

Happy Republic Day Wish Using HTML and CSS | 26 January wish using HTML/CSS

 Happy Republic Day Wish Using HTML and CSS, 26 January wish using HTML/CSS <!-- WELCOME ALL OF YOU ON COMPUTER SOFT SKILLS CHANNEL -----...

Popular Posts