“Как сделать кнопку в Python” Ответ

Как кодировать кнопку «Нажмите кнопку» в Python

from tkinter import *
master = Tk()
def close_window():
    exit()
button = Button(master, text = 'Click me', command = close_window)
button.pack()
mainloop()
Harry the Programmer

Функционировать на кнопку в TKINTER

from tkinter import *
#Creating a win
win = Tk()
#Giving a Function To The Button
def btn1():
  print("I Don't Know Your Name")
#Creating The Button
button1 =  Button(win, text="Click Me To Print SomeThing", command=btn1)
#put on screen
button1.pack()
win.mainloop()
#NB:This programme Will Print Something In The Terminal
#Check My Profile To See How We Print On The Screen Or Type In Google "Tkinter Label"
Hubert

Кнопка Tkinter

import Tkinter
import tkMessageBox

top = Tkinter.Tk()

def helloCallBack():
   tkMessageBox.showinfo( "Hello Python", "Hello World")

B = Tkinter.Button(top, text ="Hello", command = helloCallBack)

B.pack()
top.mainloop()
Zealous Zebra

кнопка в Python

import tkinter as tk

root = tk.Tk()

# Textausgabe erzeugen
label1 = tk.Label(root, text="Hallo Welt")
label1.pack()

schaltf1 = tk.Button(root, text="Aktion durchführen")
schaltf1.pack()

root.mainloop()
Worrisome Wolverine

Добавить кнопку на tkinter

import tkinter
button1 = ttk.Button(self, text="anything", command=random command)
        button1.pack()
Super Starling

Как сделать кнопку в Python

from tkinter import *  # Importing gui module
def button_function():  # The function that the button will run
	print("Text")
screen = Tk()  # Creating a screen
button_quit = Button(screen, text="Quit", command=lambda:quit)  # Creating a button
button_quit.pack()  # Putting the button on the screen
button2 = Button(screen, text="BUTTON TEXT", command=lambda:button_function())  # Creating another button
button2.pack()  # Putting that button on the screen
screen.mainloop  # Opening the screen
TheCoder1001

Ответы похожие на “Как сделать кнопку в Python”

Вопросы похожие на “Как сделать кнопку в Python”

Больше похожих ответов на “Как сделать кнопку в Python” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования