Python learning
27.3K subscribers
209 photos
8 videos
75 files
118 links
Learn pythonπŸ”₯
Quality content πŸ˜‰
Get Python Course 😁
Download Telegram
What will be the Output of the following code?
Anonymous Quiz
34%
0,1,0,1
17%
0 1 0 1
20%
0,0,1,1
30%
0,1,0,1,
America invented πŸ‘‡
Anonymous Quiz
57%
Python
17%
Rust
15%
C++
11%
Javascript
Become Full Stack Developer in just
steps: πŸ‘‡πŸ‘‡
Step 1: Learn HTML & CSS
Step 2: Learn Java Script
Step 3: Learn React, Node JS
Step 4: MySql
Step 5: MongoDB
Step 6: Git Commands
Step 7: Build Projects & Push on GitHub
Step 8: Practice, Practice & Practice
Top 10 Deep Learning Modules in Data Science πŸ”₯
Python Handwritten Notes.pdf
24.6 MB
Python Handwritten Notes

Join @python3learning for more!!

Enjoy Learning πŸ‘πŸ‘
Join our broadcast channel :- https://ig.me/j/AbYhXUHJtUKFtzI3/
python pattern notes.pdf
1.6 MB
python pattern notes.pdf
Python Basics to Advanced NotesπŸ“š (2).pdf
8.7 MB
Complete Python Handwritten Notes πŸ“βœ…
--- 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: @pythoncodess")
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()