SortedCoding
1.2K subscribers
185 photos
38 videos
194 files
140 links
Learn to code with clarity and precision
Download Telegram
How to install PyCharm on windows - Best Python IDE (2024) https://youtu.be/9_K73aTpHy4
1
import turtle
t = turtle.Turtle()
s = turtle.Screen()
t.pencolor('red')
s.bgcolor('black')
t.speed(0)

for i in range(150):
t.circle(190-i,90)
t.lt(90)
t.circle(190-i,90)
t.lt(18)
t.done()
1
import turtle as t
import colorsys as cs
t.tracer(2)
t.bgcolor('black')
t.pensize(2)
n = 100
h = 0
for i in range(500):
for i in range(4):
c = cs.hsv_to_rgb(h,1,1)
h += 1/n
t.color(c)
t.circle(49+i*5,90)
t.forward(100)
t.left(90)
t.right(10)
t.done()
1
import turtle

t = turtle.Turtle()
t.shapesize(0.2,0.2)
s = turtle.Screen()
s.bgcolor('black')

t.fillcolor('yellow')
t.begin_fill()

t.left(50)
t.forward(240)
t.circle(90,200)
t.left(221)
t.circle(90,200)
t.forward(260)

t.end_fill()
turtle.done()
2
from turtle import *
speed(0)

def insta1(x,y):
penup()
goto(x,y)
pendown()

def insta2(x,y,f,c,c1,c2):
color(c)
insta1(x,y)
begin_fill()
for i in range(4):
forward(f)
circle(c1,c2)
end_fill()

def insta3(c,x,y,c1):
color(c)
begin_fill()
insta1(x,y)
circle(c1)
end_fill()
insta2(-150,-120,350,'pink',20,90)
insta2(-110,-70,260,'white',20,90)
insta2(-90,-50,220,'pink',20,90)
insta3('white',20,10,70)
insta3('pink',20,30,50)
insta3('white',110,160,15)
hideturtle()
done()
2👍1
ChatBot Design.txt
26.7 KB
Chatbot design.txt
Full source of Chatbot 💥🚀💥
2
2
Download The Source Code For This Project 👇 https://github.com/SortedCoding/animated-svg-avatar-by-SortedCoding
1
Media is too big
VIEW IN TELEGRAM
Download The Source Code For this Project👇https://github.com/SortedCoding/3D-Earth
3
This media is not supported in your browser
VIEW IN TELEGRAM
Floating Social Buttons (Font Awesome) — hover animation of social network icons 😍


sortedcoding 🇮🇳#projects
1
This media is not supported in your browser
VIEW IN TELEGRAM
Floating Social Buttons (Font Awesome) — hover animation of social network icons 😍


sortedcoding 🇮🇳#projects
1