Trading is a good method to earn money if you have the right skill but coding is the best method to convert your thought to reality so let's also create Olimp trade logo using python
Code:
import turtle as t
t.hideturtle()
t.bgcolor("black")
t.penup()
t.goto(-10,-20)
t.pendown()
t.pensize(35)
t.pencolor("white")
t.circle(120)
t.pensize(0)
t.penup()
t.goto(-105,-50)
t.pendown()
t.begin_fill()
t.fillcolor("green")
t.forward(200)
t.left(120)
t.forward(200)
t.left(120)
t.forward(200)
t.end_fill()
t.done()
Comments
Post a Comment