PythonCoder Official (@pythoncoder92) Kanalının Son Gönderileri

PythonCoder Official Telegram Gönderileri

PythonCoder Official
• 𝗕𝗲𝘀𝘁 𝗽𝗹𝗮𝗰𝗲 𝗳𝗼𝗿 𝗣𝘆𝘁𝗵𝗼𝗻 𝗖𝗼𝗱𝗲𝗿𝘀 😀
• 𝗙𝗿𝗲𝗲 𝗣𝗿𝗼𝗴𝗿𝗮𝗺𝗺𝗶𝗻𝗴 𝗖𝗼𝘂𝗿𝘀𝗲𝘀 & 𝗧𝘂𝘁𝗼𝗿𝗶𝗮𝗹𝘀📒
• 𝗗𝗮𝘁𝗮 𝗦𝗰𝗶𝗲𝗻𝗰𝗲📊 | 𝗠𝗮𝗰𝗵𝗶𝗻𝗲 𝗟𝗲𝗮𝗿𝗻𝗶𝗻𝗴 | 𝗔𝗜 🤖
• 𝗗𝗮𝗶𝗹𝘆 𝗗𝗼𝘇𝗲 𝗼𝗳 𝗣𝗿𝗼𝗷𝗲𝗰𝘁𝘀 🧠
81,869 Abone
223 Fotoğraf
8 Video
Son Güncelleme 09.03.2025 02:43

PythonCoder Official tarafından Telegram'da paylaşılan en son içerikler

PythonCoder Official

04 Mar, 15:44

1,043

Click here, Register Free
            👇👇👇
https://link.guvi.in/Codearjit01757


--> Become Python Data Science Certified 🏅

⚠️ Don't miss this Opportunity ⚠️
PythonCoder Official

02 Mar, 06:34

1,082

⚠️  ATTENTION PEOPLE  ⚠️

Learn Data Science, Python & SQL from scratch by Online Masterclass at Free of Cost by PhysicsWallah 💻

-> Certificate to Everyone by PW 🏅

-> Learn Job Ready Skills ✔️

-> Master Python, SQL, Tableau, Excel , Data Analysis 📊

-> Free of Cost Online Training 🚀

Click here, Register Free
               👇👇👇
https://tinyurl.com/freedatascience2


Don't miss this Opportunity
PythonCoder Official

15 Feb, 08:00

9,155

Don't forget to React ❤️ to this msg if you want more content Like this 👍
PythonCoder Official

10 Jan, 15:02

1,960

💥 GOLDEN OPPORTUNITY 💥

Want to learn How to Create Website 🤔

PhysicsWallah is giving Free Training on Full Stack Website Development 🚀

--> Certificate to Everyone 🏅

--> Jobs / Internship Opportunities

Become Certified Full Stack Website Developer 🏅 🚀

Click here, Register Free
              👇👇👇
https://tinyurl.com/freeWebsiteTraining1


Don't miss this Opportunity
PythonCoder Official

06 Jan, 08:22

24,378

Don't forget to React ❤️ to this msg if you want more content Like this 👍
PythonCoder Official

29 Nov, 15:46

39,812

-------- Python Code ------------
( Are you idiot - ( Yes/No )


👇👇👇👇👇👇👇👇👇👇👇👇

import tkinter as tk
import random

def show_popup():
    popup = tk.Toplevel(root)
    popup.title("Popup")
    label = tk.Label(popup, text="Thanks for Accepting")
    label.pack(padx=20, pady=20)

def move_button(event):
    x = random.randint(0, 350)
    y = random.randint(0, 350)
    no_button.place(x=x, y=y)

root = tk.Tk()
root.title("@python.coder_")
root.geometry("400x400")

question_label = tk.Label(root, text="Are you idiot ?")
question_label.pack(pady=20)

yes_button = tk.Button(root, text="Yes", command=show_popup)
yes_button.pack()

no_button = tk.Button(root, text="No")
no_button.pack()

no_button.bind("<Enter>", move_button)

root.mainloop()
PythonCoder Official

16 Nov, 14:08

1,286

Have you Joined Free Full Stack Website Development Online Training with Certification by PhysicsWallah 🏅 🤔

Already 1000+ People Joined ✔️

Register here Free
👇

https://bit.ly/4g3uoEj
PythonCoder Official

13 Nov, 15:46

4,039

💥 ATTENTION PEOPLE 💥

Learn Full Stack Development from
scratch by Online Masterclass at Free of Cost by PhysicsWallah
💻

-> Certificate to Everyone 🏅

-> Learn how to make Ecommerce Website

-> Free of Cost Online Training 🚀

Click here, Register Free
👇👇👇
https://bit.ly/4g3uoEj


⚠️ Free for Limited People ⚠️
PythonCoder Official

13 Nov, 15:41

3,854

Do you want Certification of Full Stack Website Development by PhysicsWallah at Free of Cost 🤔 ---> Yes / No 🤔
PythonCoder Official

10 Nov, 14:05

36,448

- 📌 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()