آموزش پایتون محبوب ترین زبان برنامه نویسی...!!

پایتون بهترین و محبوب ترین زبان برنامه نویسی در دنیا..!!

Python Icon
Python Icon

اگر می خواهید در پایتون یک صفحه نرم افزار و یک دکمه خروج داشته باشید کد زیر را در IDLE پایتون خود بنویسید ??

from tkinter import *

import tkinter as tk

root = Tk()

root.geometry('600x600')

root.title('window')

button = Button(root, text="Exit", bg="red", activebackground="black", height=12, width=5, font=("arial", 20, "bold"), command=exit)

button.place(x=6, y=400, height=88, width=120)

def exit():

if button == close():

root.close()

root.mainloop()

حالا همین کد را اجرا کنید تا نتیجه را ببینید. ممنون