Bitcoin logo design using turtle in python programming|

Опубликовано: 12 Февраль 2026
на канале: HighteckGirl
108
11

Bitcoin logo design using turtle in python programming
Beautiful graphic design using turtle
logo design using turtle in python programming
#shorts
#youtubeshorts #pythonprogramming #python #pythonlanguage #pythonshorts #pythontutorial #pythonprogram #python3 #youtubeshortsviral
#turtle
#google
#bitcoin
#bitcoinlogo
#crypto
#cryptocurrency

Source code 👇👇👇

#Bitcoin logo design using turtle in python by highteckgirl
import turtle as t
t.bgcolor("black")
t.speed(10)
t.pensize(3)
t.shape("turtle")

#circle
t.color("#F7931A")
t.begin_fill()
t.circle(230)
t.end_fill()


t.up()
t.goto(-70,130)
t.down()
t.color("white")
t.begin_fill()
t.lt(80)
t.fd(200)
t.rt(90)
t.fd(30)
t.rt(90)
t.fd(200)
t.rt(90)
t.fd(30)
t.end_fill()

#####Down
t.rt(180)
t.up()
t.goto(-90,133)
t.down()

t.begin_fill()
t.fd(90)
t.circle(45,190)

t.rt(90)
t.fd(30)
t.lt(90)

t.circle(75,-190)
t.lt(180)
t.fd(90)
t.rt(90)
t.fd(30)
t.end_fill()


#####highteckgirl
#####Up
t.up()
t.goto(-50,330)
t.down()
t.rt(90)
t.begin_fill()
t.fd(80)
t.rt(-180)
t.circle(45,-160)
t.rt(90)
t.fd(30)
t.lt(90)
t.circle(75,160)
t.setheading(180)
t.lt(350)
t.fd(80)
t.lt(90)
t.fd(30)
t.end_fill()

#Creating function line
def line(x,y):
t.up()
t.goto(x,y)
t.down()
for i in range(2):

t.begin_fill()
t.fd(40)
t.rt(90)
t.fd(20)
t.rt(90)
t.end_fill()
line(50,370)
line(0,380)
line(-50,100)
line(0,90)

####highteckgirl
t.lt(270)

t.up()
t.goto(14,205)
t.down()
for i in range(2):

t.begin_fill()
t.fd(50)
t.rt(90)
t.fd(30)
t.rt(90)
t.end_fill()

#Written Bitcoin
t.up()
t.setpos(-150,-150)
t.down()
t.color('#F7931A')
t.write('Bitcoin',font=("Calibri", 20, "bold"))

t.ht()
t.done()