Spotify logo with python turtle

Опубликовано: 15 Апрель 2026
на канале: SNACTHY SHORTS
39
2

Spotify logo with python turtle
Source code below:-
import turtle as t
t.Screen()
t.bgcolor("Black")
t.speed(15)
t.begin_fill()
t.fillcolor('#1DB954')
t.pencolor("#1DB954")
t.pensize(0)
t.circle(100)
t.end_fill()
t.penup()
t.goto(40,50)
t.pendown()
t.left(150)
t.forward(0)
t.pensize(15)
t.pencolor('black')
t.circle(80,60)
t.penup()
t.goto(50,85)
t.pendown()
t.pensize(17)
t.right(60)
t.forward(0)
t.circle(100,60)
t.penup()
t.goto(60,120)
t.pendown()
t.pensize(20)
t.right(60)
t.forward(0)
t.circle(120,60)
t.penup()
t.goto(130, 55)
t.pendown()
t.color("#1DB954")
t.write("Spotify", font=("Arial",10,"bold"))
t.done()
The source code above is also in comment box use it in pyroid 3 application to create your own spotify logo
#MusicForEveryone #codinglogos #spotshort