PythonCoder Official
78K subscribers
224 photos
8 videos
91 files
98 links
โ€ข ๐—•๐—ฒ๐˜€๐˜ ๐—ฝ๐—น๐—ฎ๐—ฐ๐—ฒ ๐—ณ๐—ผ๐—ฟ ๐—ฃ๐˜†๐˜๐—ต๐—ผ๐—ป ๐—–๐—ผ๐—ฑ๐—ฒ๐—ฟ๐˜€ ๐Ÿ˜€
โ€ข ๐—™๐—ฟ๐—ฒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ด ๐—–๐—ผ๐˜‚๐—ฟ๐˜€๐—ฒ๐˜€ & ๐—ง๐˜‚๐˜๐—ผ๐—ฟ๐—ถ๐—ฎ๐—น๐˜€๐Ÿ“’
โ€ข ๐——๐—ฎ๐˜๐—ฎ ๐—ฆ๐—ฐ๐—ถ๐—ฒ๐—ป๐—ฐ๐—ฒ๐Ÿ“Š | ๐— ๐—ฎ๐—ฐ๐—ต๐—ถ๐—ป๐—ฒ ๐—Ÿ๐—ฒ๐—ฎ๐—ฟ๐—ป๐—ถ๐—ป๐—ด | ๐—”๐—œ ๐Ÿค–
โ€ข ๐——๐—ฎ๐—ถ๐—น๐˜† ๐——๐—ผ๐˜‡๐—ฒ ๐—ผ๐—ณ ๐—ฃ๐—ฟ๐—ผ๐—ท๐—ฒ๐—ฐ๐˜๐˜€ ๐Ÿง 
Download Telegram
Java Interview Questions with Answers
๐Ÿ‘44โค12๐Ÿ”ฅ5๐Ÿฅฐ2
java programs.pdf
124.3 KB
๐Ÿ‘23โค2๐Ÿ”ฅ2
DataStructure Notes.pdf
16.9 MB
Complete 100 ๐Ÿ‘ Reaction & We'll share Python Handwritten Notes ๐Ÿ“Œ
๐Ÿ‘293โค18โคโ€๐Ÿ”ฅ10๐Ÿ”ฅ8๐Ÿ˜3๐Ÿ‘1๐ŸŽ‰1๐Ÿ˜1
--- Do you like me Source Code ---


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("instagram: @python.coder_")
root.geometry("400x400")

question_label = tk.Label(root, text="Do you like me?")
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()
๐Ÿ‘65โค13๐Ÿ”ฅ5๐Ÿค”2๐Ÿฅฐ1๐Ÿ˜1
- ๐Ÿ“Œ 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()
๐Ÿ‘69โค12๐Ÿ”ฅ9โคโ€๐Ÿ”ฅ4๐Ÿ‘2๐Ÿ˜1
-------- 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()
๐Ÿ‘62โค20๐Ÿ”ฅ8๐Ÿ‘6๐Ÿ˜5๐Ÿ˜ข2
๐Ÿ‘60โค30๐Ÿ”ฅ11๐Ÿค”6
python Interview Questions ๐Ÿ (1).pdf
734.5 KB
Don't forget to React โค๏ธ to this msg if you want more content Like this ๐Ÿ‘
โค125๐Ÿ‘42๐Ÿ”ฅ6๐Ÿ™5๐Ÿ‘4
Important [ Python Built-in Methods ] {CheatSheet}.pdf
304.4 KB
Don't forget to React โค๏ธ to this msg if you want more content Like this ๐Ÿ‘
โค92๐Ÿ‘15๐Ÿ‘Œ5
TCS-Coding-Programming-Questions (1) (1).pdf
416.5 KB
Don't forget to React โค๏ธ to this msg if you want more content Like this ๐Ÿ‘
โค69๐Ÿ‘12๐Ÿ”ฅ2๐Ÿ˜ฑ2
Reply Correct Answer ๐Ÿ‘‡
โค35๐Ÿ‘16๐Ÿ”ฅ5๐Ÿ‘3
python interview questions and answers.pdf
269.9 KB
React โ™ฅ๏ธ for more content like this ๐Ÿ‘
โค58๐Ÿ‘12๐Ÿคฉ5๐Ÿ”ฅ4๐Ÿ˜2๐Ÿ‘1
Python Handwritten Notes PDF Guide.pdf
32.3 MB
Don't forget to React โค๏ธ to this msg if you want more content Like this ๐Ÿ‘
โค152๐Ÿ‘22๐Ÿฅฐ5๐Ÿ”ฅ2
50 JavaScript Interview Questions (1).pdf
84.4 KB
Don't forget to React โค๏ธ to this msg if you want more content Like this ๐Ÿ‘
โค68๐Ÿ‘8๐Ÿ™6
- Location of Mobile Number Code -

import phonenumbers
from phonenumbers import timezone
from phonenumbers import geocoder
from phonenumbers import carrier

number = input("Enter the phone number with country code : ")

# Parsing String to the Phone number
phoneNumber = phonenumbers.parse(number)

# printing the timezone using the timezone module
timeZone = timezone.time_zones_for_number(phoneNumber)
print("timezone : "+str(timeZone))

# printing the geolocation of the given number using the geocoder module
geolocation = geocoder.description_for_number(phoneNumber,"en")
print("location : "+geolocation)

# printing the service provider name using the carrier module
service = carrier.name_for_number(phoneNumber,"en")
print("service provider : "+service)
โค56๐Ÿ‘5๐Ÿค”1
Want to Join Free Workshop on Cyber Security, Data Science & Full Stack Development ?
Anonymous Poll
47%
Yes ๐Ÿ™Œ
53%
Yes ++ How to join Free ?
โš ๏ธ ATTENTION PEOPLE โš ๏ธ

Dear Students,

Are you ready to start your career in one of the most in-demand tech fields?


Join our 2-Day FREE Weekend Workshop on:

--> Cyber Security
--> Data Science
--> Full Stack Development

๐ŸŽ Get:

โœ… Internship Chance
โœ… E-Certificate (Recog.)
โœ… Hackathon Challenges
โœ… Scholarship Opportunities

โœ… Limited Seats! Donโ€™t miss this opportunity to kickstart your tech career.

๐Ÿ“ฒ Register now & be future-ready!


Join here Free
๐Ÿ‘‡๐Ÿ‘‡
https://forms.gle/J9yFdKT53P1KQWESA


Hurry up Students ๐Ÿš€
โค12๐Ÿ”ฅ1