PythonNotes
92.4K subscribers
123 photos
118 files
12 links
Best Place for Learning Python Programming

Free Notes of Programming languages 👇
• Python • Java • JavaScript
• C • C++

Free Courses & Job Updates ☑️🔎🆓
Download Telegram
👍543911🔥6💯6
SQL Interview Ques & ANS 💥
👍9428🔥6🤩54💯3
To add a new element to a list we use which Python command?
Anonymous Quiz
8%
list1.addEnd(5)
7%
list1.addLast(5)
63%
list1.append(5)
22%
list1.add(5)
👍45144🔥3🤩3
What is the data type of (1)?
Anonymous Quiz
60%
integer
19%
Tuple
5%
List
16%
Both a & b
👍6311🔥11🤩9
java programs (2).pdf
124.3 KB
Important Java Codes ✔️

Complete 100 Reactions & We'll share Top Python Codes 📌
👍13627💯10🔥96
👍69🤩15💯141211🔥6
🔥43👍229💯9
python 💙.pdf
916.8 KB
Python Notes

Don't forget to React ❤️ to this msg if you want more content Like this 👍
104👍34🔥134💯2
All Cheat Sheets Collection (3).pdf
2.7 MB
Python Cheatsheets

Don't forget to React ❤️ to this msg if you want more content Like this 👍
👍7861🤩54🔥2
- 📌 Python Logo Source Code📌 -


import turtle

t = turtle.Turtle()
s = turtle.Screen()
s.bgcolor("black")
t.speed(10)
t.pensize(2)
t.pencolor("white")



def s_curve():
    for i in range(90):
        t.left(1)
        t.forward(1)

def r_curve():
    for i in range(90):
        t.right(1)
        t.forward(1)

def l_curve():
    s_curve()
    t.forward(80)
    s_curve()

def l_curve1():
    s_curve()
    t.forward(90)
    s_curve()

def half():
    t.forward(50)
    s_curve()
    t.forward(90)
    l_curve()
    t.forward(40)
    t.left(90)
    t.forward(80)
    t.right(90)
    t.forward(10)
    t.right(90)
    t.forward(120) #on test
    l_curve1()
    t.forward(30)
    t.left(90)
    t.forward(50)
    r_curve()
    t.forward(40)
    t.end_fill()

def get_pos():
    t.penup()
    t.forward(20)
    t.right(90)
    t.forward(10)
    t.right(90)
    t.pendown()

def eye():
    t.penup()
    t.right(90)
    t.forward(160)
    t.left(90)
    t.forward(70)
    t.pencolor("black")
    t.dot(35)

def sec_dot():
    t.left(90)
    t.penup()
    t.forward(310)
    t.left(90)
    t.forward(120)
    t.pendown()

    t.dot(35)




t.fillcolor("#306998")
t.begin_fill()
half()
t.end_fill()
get_pos()
t.fillcolor("#FFD43B")
t.begin_fill()
half()
t.end_fill()

eye()
sec_dot()



def pause():
    t.speed(2)
    for i in range(100):
        t.left(90)
pause()


Don't forget to React ❤️ to this msg if you want more Codes Like this 👍
194👍118🤩8🔥7💯54