У нас вы можете посмотреть бесплатно Python GUI Tutorial - 34 - making a search app - part 1 или скачать в максимальном доступном качестве, видео которое было загружено на ютуб. Для загрузки выберите вариант из формы ниже:
Если кнопки скачивания не
загрузились
НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием видео, пожалуйста напишите в поддержку по адресу внизу
страницы.
Спасибо за использование сервиса ClipSaver.ru
In this video, we'll develop a small application that will accept a string and returns us some results of that string on a button click. code in the video - from tkinter import * root = Tk() topframe = Frame(root) entry = Entry(topframe) entry.pack() button = Button(topframe, text="search") button.pack() topframe.pack(side = TOP) bottomframe = Frame(root) scroll = Scrollbar(bottomframe) scroll.pack(side=RIGHT, fill=Y) answer = Text(bottomframe, width=30, height=10, yscrollcommand = scroll.set) scroll.config(command=answer.yview) answer.pack() bottomframe.pack() root.mainloop() ------------------------------------------------------------ i'm sure your queries like - how to develop a simple search app in tkinter? how to use wikipedia to develop an app in tkinter? how to make jarvis type question answer bot in tkinter? how to develop an app in tkinter? have been solved. if you have any problem related to this video then please let us know in comment box. Thanks. contact us - facebook- / programmingcage