Skip to main content

Posts

Showing posts from July, 2022

optical illusion python code

   Optical Illusion  Using   Python   Turtle. ✌ Hello Guys, In this blog I will let you know how to make optical illusions using python turtle. What is an optical illusion??    O ptical illusions are images or pictures that we perceive  differently than they really are. Put another way, optical  illusions occur when our eyes send information to our brains that tricks us into perceiving something that does not match reality.       Steps to be followed :-     1.Open Vs-Code    2.Import Python turtle 🐢     3.Start Making turtle Graphics [👇🏼 Video ]                                   Image-1             Image-2                        #Source Code #Making Background using python turtle import turtl...

spider man code in python

Making Spider-Man Using python turtle Hello Guys, In this blog I will let you know how to make Spider-Man Using python turtle. On-Demand of one of our subscribers. You can also suggest Any Graphics, in the Comment box.                                    Refer to the video for a tutorial             Refer this      👇🏼                                             #Result #Source Code import turtle turtle.bgcolor ( ' black ' ) p = turtle.Turtle () wn = turtle.Screen () p.pencolor ( ' red ' ) p.hideturtle () #curve01 def curve01 ( a , d ):     for i in range ( d ) :         p.right ( a )         p.forward ( 1 ) #making eye p.width ( 15 ) p.penup () p.right ( 90 ) p.forward ( 85 ) p.l...