Learn Python tkinter GUI listboxes easy 📋

  Рет қаралды 23,216

Bro Code

Bro Code

Күн бұрын

Пікірлер: 41
@BroCodez
@BroCodez 4 жыл бұрын
# listbox = A listing of selectable text items within it's own container def submit(): food = [] for index in listbox.curselection(): food.insert(index,listbox.get(index)) print("You have ordered: ") for index in food: print(index) def add(): listbox.insert(listbox.size(),entryBox.get()) listbox.config(height=listbox.size()) def delete(): for index in reversed(listbox.curselection()): listbox.delete(index) listbox.config(height=listbox.size()) from tkinter import * window = Tk() listbox = Listbox(window, bg="#f7ffde", font=("Constantia",35), width=12, selectmode=MULTIPLE) listbox.pack() listbox.insert(1,"pizza") listbox.insert(2,"pasta") listbox.insert(3,"garlic bread") listbox.insert(4,"soup") listbox.insert(5,"salad") listbox.config(height=listbox.size()) entryBox = Entry(window) entryBox.pack() frame = Frame(window) frame.pack() submitButton = Button(frame,text="submit",command=submit) submitButton.pack(side=LEFT) addButton = Button(frame,text="add",command=add) addButton.pack(side=LEFT) deleteButton = Button(frame,text="delete",command=delete) deleteButton.pack(side=LEFT) window.mainloop()
@dumandanarnela.6831
@dumandanarnela.6831 2 жыл бұрын
how to show the deleted items and remove from the box at the same time
@davidcalebpaterson7101
@davidcalebpaterson7101 3 жыл бұрын
Best video in the whole KZbin. Not even kidding. Thanks a ton
@juliannabendeck
@juliannabendeck Ай бұрын
You;re the goat bro code!!! saving my intro to comp grade rn 🐐🐐🐐🐐🐐
@jhassee
@jhassee 2 жыл бұрын
Best channel yet, this is the best pre-course material ever. This smokes everything except coursera but in ways still out does coursera
@toddlawrimore3577
@toddlawrimore3577 8 ай бұрын
Helpful and especially direct to the subject. I am a fan. Thank you.
@jussstdoiit
@jussstdoiit 9 ай бұрын
you are the GOAT of coding, love from earth 🌏
@hydarhydar2338
@hydarhydar2338 2 ай бұрын
Well Well ❤ thank you for the very helpful tutorials
@KhoaNguyen-bk2kv
@KhoaNguyen-bk2kv 3 жыл бұрын
A useful video. Thanks bro.
@hamzazad5258
@hamzazad5258 8 ай бұрын
great video! loved coding along in this one
@Complex2.0GameR
@Complex2.0GameR 11 ай бұрын
Your are best bro ....love from bangladesh
@kapibara2440
@kapibara2440 Жыл бұрын
Super video Bro! 🎉🎉
@paulfernando8815
@paulfernando8815 9 ай бұрын
Nicely explained. But I did not see the usual comments added at the end of the code lines in this.
@mikemurphy1896
@mikemurphy1896 3 жыл бұрын
Fast, but really good. Thx
@googlegoogle1610
@googlegoogle1610 3 жыл бұрын
thank you for such a great tutorial :)
@piotrkopcewicz5227
@piotrkopcewicz5227 2 жыл бұрын
Great tutorial! :)
@monwil3296
@monwil3296 4 жыл бұрын
We're going to break it Bro 👍👌
@binkyslife
@binkyslife Жыл бұрын
Thank you 😁👍👍👍👍
@AzzRushman
@AzzRushman Жыл бұрын
If .size() returns the size of the list, how come it doesn't replace the latest entry's index when used in .insert()? Apparently I can use END for the first argument of .insert() to add a new entry at the end of the list without weirding myself out.
@nearo007
@nearo007 8 ай бұрын
this is one year later but basically: the list ["hot dog" , "pizza" ] has the size of 2 items but the index of the last item is actually 1 (because it starts at 0) so inserting the index 2 would be the 3rd item on the list
@zollkerrb8848
@zollkerrb8848 2 жыл бұрын
great show
@Data_Falcon
@Data_Falcon 7 ай бұрын
bro it is very helpfull
@philtoa334
@philtoa334 3 жыл бұрын
Great vidéo.
@jussstdoiit
@jussstdoiit 9 ай бұрын
please can you make a guidance video of how to get in freelancing with coding
@truquichan
@truquichan Жыл бұрын
Great!
@JohnSmithZen
@JohnSmithZen Жыл бұрын
Is there any way to make the columns resizable by clicking and dragging on top box in a column? (like you can most other prorgrams' listboxes)
@lw9954
@lw9954 2 жыл бұрын
Ty bro!
@jussstdoiit
@jussstdoiit 9 ай бұрын
how many centuries it takes to be like you bro?
@sidtheepic1103
@sidtheepic1103 8 ай бұрын
Can someone explain the reversed thing, thats the only thing i find confusing.
@AgmagusOkanm
@AgmagusOkanm Ай бұрын
Dropping comment down below!
@kambingterbang
@kambingterbang 6 ай бұрын
thanks!!!
@SolistheLinguist-so7oq
@SolistheLinguist-so7oq 2 ай бұрын
can i copy all of this code?
@EissaAlahdul
@EissaAlahdul 2 жыл бұрын
شكرا
@beingzero7541
@beingzero7541 2 жыл бұрын
Wow!!!!
@itsminaaah
@itsminaaah 2 жыл бұрын
can somebody help me how can I put exception handling when user did not select anything from the listbox but did click the delete button?
@voibuicochauphitruongthanh14
@voibuicochauphitruongthanh14 2 жыл бұрын
try cutting the delete button then paste it in a try...except clause idk if it helps try: deleteButton = Button(window,text="delete",command=delete) deleteButton.pack() except Exception: print("your text here") you should ask in stack overflow btw
@gustavoaponte1814
@gustavoaponte1814 Жыл бұрын
meow meow meow~!
@itsminaaah
@itsminaaah 2 жыл бұрын
can somebody help me how can I put exception handling when user did not select anything from the listbox but did click the delete button?
@itsminaaah
@itsminaaah 2 жыл бұрын
can somebody help me how can I put exception handling when user did not select anything from the listbox but did click the delete button?
@itsminaaah
@itsminaaah 2 жыл бұрын
can somebody help me how can I put exception handling when user did not select anything from the listbox but did click the delete button?
@itsminaaah
@itsminaaah 2 жыл бұрын
can somebody help me how can I put exception handling when user did not select anything from the listbox but did click the delete button?
Learn Python tkinter GUI messageboxes easy 💭
13:19
Bro Code
Рет қаралды 19 М.
Tkinter tutorial for beginners #5: Combobox, Listbox
21:36
Code First with Hala
Рет қаралды 10 М.
Don’t Choose The Wrong Box 😱
00:41
Topper Guild
Рет қаралды 62 МЛН
It works #beatbox #tiktok
00:34
BeatboxJCOP
Рет қаралды 41 МЛН
3 PYTHON AUTOMATION PROJECTS FOR BEGINNERS
17:00
Internet Made Coder
Рет қаралды 1,7 МЛН
Learn Python tkinter GUI checkboxes easy ✔️
9:36
Bro Code
Рет қаралды 21 М.
Use a Drag & Drop Editor to Make Tkinter Python GUI Applications!
11:16
Learn Python tkinter GUI scales easy 🌡️
10:20
Bro Code
Рет қаралды 15 М.
Learn Python OOP in under 20 Minutes
18:32
Indently
Рет қаралды 148 М.
5 Useful F-String Tricks In Python
10:02
Indently
Рет қаралды 337 М.
The tkinter combobox and  spinbox widgets
16:29
Atlas
Рет қаралды 6 М.
Learn Python tkinter GUI menubars easy 🧾
10:49
Bro Code
Рет қаралды 22 М.