This Python drawing looks amazing!
This is very nice! Will definitely attempt.
How to do this. It is very amazing.
Please help me because I don’t know anything about this.
@discobot Can we make scannable links like QR code for this type of images or unique patterns.
Which will generate unique and special meaningful qr code.
I made an attempt to draw one snake as follow,
The python code is given below:
import turtle
from time import sleep
t = turtle.Turtle()
t = turtle.Turtle()
t.fd(150)
t.lt(90)
t.fd(20)
t.lt(90)
t.fd(60)
t.rt(90)
t.fd(30)
t.pu()
t.rt(90)
t.fd(20)
t.rt(90)
t.pd()
for i in range(360):
t.fd(0.15) t.lt(1)
t.pu()
t.rt(90)
t.fd(20)
t.pd()
t.rt(90)
for i in range(180):
t.fd(1) t.rt(1)
t.fd(80)
for i in range(90):
t.fd(0.25) t.rt(1)
t.fd(140)
for i in range(90):
t.fd(0.25) t.lt(1)
t.fd(30)
t.rt(90)
t.fd(30)
for i in range(180):
t.fd(0.765) t.rt(1)
t.ht()
sleep(15)
I hope this may help others to complete the pattern.