“Daj Uttonowi numer Python” Kod odpowiedzi

Daj Uttonowi numer Python

def create_buttons(self):
    for x in range(10):
        button = ttk.Button(self, text=x, command=lambda number=x: self.callback(number))
        button.grid()
Splendid Squirrel

Daj Uttonowi numer Python

def callback(self, number):
    new_value = self.user_input.get() + str(number)
    self.user_input.set(new_value)
Splendid Squirrel

Odpowiedzi podobne do “Daj Uttonowi numer Python”

Pytania podobne do “Daj Uttonowi numer Python”

Więcej pokrewnych odpowiedzi na “Daj Uttonowi numer Python” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu