Draw a BTC Logo Graphics Design in Python Turtle | Python Turtle Programming |

                                                                             watch here

Source Code :

import turtle
from turtle import *

t=turtle.Turtle()
wn=turtle.Screen()
wn.bgcolor('black')
t.penup()

#circle
t.seth(180)
t.begin_fill()
t.pencolor('white')
t.fillcolor('white')
t.goto(0,270)
t.pendown()
t.circle(300)
t.penup()
t.end_fill()

t.setpos(-125,-125)
t.pendown()
t.pencolor("black")
t.seth(90)
t.fillcolor("black")
t.begin_fill()
t.forward(350)
t.right(131)
t.forward(150)
t.seth(270)
t.forward(250)
t.right(65)
t.forward(124)
t.end_fill()

t.seth(0)
t.penup()
t.forward(250)
t.pendown()
t.begin_fill()
t.seth(90)
t.forward(400)
t.left(131)
t.forward(150)
t.seth(270)
t.forward(250)
t.left(65)
t.forward(124)
t.end_fill()
t.hideturtle()

#write 'BTC'
t.penup()
t.seth(265)
t.forward(160)
t.right(90)
t.forward(235)
t.pendown()
t.write("BTS",font=("Helvetica", 95))

turtle.done()