Wednesday, June 23, 2021

Windows 11  FeaturesNew Start Menu, Taskbar, and Search BarNew Anin1ations are added while dragging the windows. Even Opening a new window, closing, and minimize tap have different amination than earlier versions of Windows.Featured add to perform multitask with windows like split-screen, creating groups of various task windows, etc.Touch controls are improved significantly....

Sunday, May 30, 2021

 Draw Amazing Pattern with Python TurtleSource Code:-import turtleturtle.setup(width=600, height=500)turtle.reset()turtle.hideturtle()turtle.speed(0)#rohiticalcoding turtle.bgcolor('black')c = 0x = 0colors = [#reddish colors(1.00, 0.00, 0.00),(1.00, 0.03, 0.00),(1.00, 0.05, 0.00),(1.00, 0.07, 0.00),(1.00, 0.10, 0.00),(1.00, 0.12, 0.00),(1.00, 0.15, 0.00),(1.00, 0.17,...

Wednesday, May 19, 2021

 Draw  Amazing Spherical Pattern with Python TurtleSource Code:-import turtleturtle.bgcolor("black")painter = turtle.Turtle()painter.speed(0)painter.penup()painter.left(90)painter.goto(0,0)painter.forward(100)painter.left(180)painter.pendown()j=0while(j<=5):        painter.pencolor("red")    for i in range(150):   ...

Saturday, May 15, 2021

 Draw Captain America Shield with Python TurtleCaptain America is a superhero appearing in American comic books published by Marvel Comics. Created by cartoonists  Joe Simon and Jack Kirby, the character who first appeared in Captain America Comics. Captain America was the first Marvel Comics character...

Sunday, May 9, 2021

Hack Google Chrome and Make your Dino Game AutomaticWhat is Google Chrome Dino Game?Google Chrome Dino Game is the free offline/online game in which you can see in your chrome browser when there is no internet connection available.How many characters in this game?  1.     Dino2.     Cactus3.   DuckThere...

Wednesday, May 5, 2021

 Draw PIKACHU  with Python TurtleSource Code:-import turtledef rohitical(x, y):    turtle.setx(x)    turtle.sety(y)    print(x, y)class Cartoon:    def __init__(self):        self.t = turtle.Turtle()        t = self.t        t.pensize(3)       ...