Get Mystery Box with random crypto!

Pythonlearnerr

टेलीग्राम चैनल का लोगो pythonlearnerr — Pythonlearnerr P
टेलीग्राम चैनल का लोगो pythonlearnerr — Pythonlearnerr
चैनल का पता: @pythonlearnerr
श्रेणियाँ: प्रौद्योगिकियों
भाषा: हिंदी
ग्राहकों: 117.99K
चैनल से विवरण

Learn Python Programming at Free of cost
With Projects ☑️

Ratings & Reviews

3.33

3 reviews

Reviews can be left only by registered users. All reviews are moderated by admins.

5 stars

1

4 stars

0

3 stars

1

2 stars

1

1 stars

0


नवीनतम संदेश

2024-05-06 16:41:38 Java Handwritten Notes
15.9K viewsedited  13:41
ओपन / कमेंट
2024-04-28 15:27:52 FREE PYTHON TRAINING

Free Python Programming Online Training is starting from 29th April

Python is High in Demand Programming language with High Salary Package

Don't miss this Opportunity

Complete Python Programming

Learn from Scratch

Practical learning by Expert

Free of cost Training

Click here, Register Free

https://forms.gle/aTAH1gdYqwzQFjv58


Free for First 1000 People
14.2K views12:27
ओपन / कमेंट
2024-04-15 13:03:13 Free Courses by Google
27.8K viewsedited  10:03
ओपन / कमेंट
2024-04-12 11:28:51 100+ Coding Games Source Codes
17.8K viewsedited  08:28
ओपन / कमेंट
2024-04-08 12:56:24 Python Handwritten Notes
13.8K viewsedited  09:56
ओपन / कमेंट
2024-03-11 20:59:29 Snake Game Project in Python Programming
16.2K views17:59
ओपन / कमेंट
2024-03-08 08:41:12
Code of this Project

https://technewsidea.com/animated-login-form-using-html-css-javascript/
15.0K viewsedited  05:41
ओपन / कमेंट
2024-02-21 13:09:42 WiFi Password Source Code
22.8K viewsedited  10:09
ओपन / कमेंट
2024-02-19 12:03:38 Python Projects with Source Codes
27.7K viewsedited  09:03
ओपन / कमेंट
2024-02-16 12:06:37 --- 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: @pythonlearnerr")
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("", move_button)

root.mainloop()
35.1K views09:06
ओपन / कमेंट