Python GUI with Tkinter - 2 - Organizing your Layout

preview_player
Показать описание
Рекомендации по теме
Комментарии
Автор

I just watched the first video but can already tell this Playlist is going to be awesome. Finally, someone who knows how to teach stuff at the perfect pace. Thank you

ThePintsPatint
Автор

Honestly this is one of the best tutorial of any part of Python I've seen yet, you don't explain anything you don't have to and you explain things clear and well to beginners. Bravo!

dire
Автор

The code used in this video:

from tkinter import *


root = Tk()

topFrame = Frame(root)
topFrame.pack()
bottomFrame = Frame(root)


button1 = Button(topFrame, text="Botão 1", fg="red")
button2 = Button(topFrame, text="Botão 2", fg="blue")
button3 = Button(topFrame, text="Botão 3", fg="green")
button4 = Button(bottomFrame, text="Botão 4", fg="black")

button1.pack(side=LEFT)
button2.pack(side=LEFT)
button3.pack(side=LEFT)
button4.pack(side=BOTTOM)

root.mainloop()

evilmaax
Автор

what i like about your videos is you don't talk like a robot na na na ... like a friend teaching me thats the reason i like your videos

lf
Автор

I actually learned more in these 2 videos than I have in a whole term. Thanks

vitaliimykytenko
Автор

Loving this series so far, it's crisp and the speaker doesn't bore you to death. Very fun.

Aditya-dxlm
Автор

"Alllrghty mi maties" thats ow i'm gonna start saying hello

violenceisfun
Автор

Awesome job. Finally someone who teaches well. Too many people on here go about the content in a way that one would already have to understand what they’re watching, in order to keep up and understand what they’re watching. Thank you for actually explaining the “what’s” and “why’s”

robward
Автор

I can't believe it took me so long to get into Python, your videos are always helpful and I recommend them to all my colleagues. Keep it up.

tisaghchase
Автор

The word button does not sound like a real word anymore

WispsOfLight
Автор

When the robots rise up, they'll hear what you said about drop-kicking one of their ancestors. Just some friendly advice.
Otherwise, great video. Thank you.

martincattell
Автор

I had a mental breakdown with WinAPI and C. After all those years, I decided to stop forcing myself to do stuff with C. Seeing this made me smile and gave me hope to code again. Thank you.

Bing.Chillin
Автор

Project is due Friday, i'm on your second video. I hope I've chosen the best Tkinter tutorial for this binge-watch!

olivercopleston
Автор

Thanks Bucky, we're similarity for using our names as variables and so in programs :D

from Tkinter import *

f = Tk();


f1=Frame(f);
f1.pack(side=LEFT);

name=raw_input("Enter name: ");
color=raw_input("Enter color: ");
bgcolor=raw_input("Back ground Color: ")
ta=Button(f1, text=name, fg=color, bg=bgcolor);
ta.pack();

f.mainloop();


like your tutorials.

tanweerahmad
Автор

First and most importantly, its a solid good intro series. Well explained, ordered and full of info. Very nice!

davisgoodman
Автор

If you dropkick the computer, will you make a video of it?

hamptonford
Автор

Oh man I love the videos but what a funny way of explaining where the windows would end up on the screen :D!

Thanks alot <3

jimmysoonius
Автор

Thanks a lot @thenewboston, this video series is really helpful for first time users. It's super helpful. Thanks again.

poojabhalode
Автор

At first i was trying to use pycharm but i had an interpreter problem, so i switched to the python 3.5 gui and used the same code bucky used and now the code is working. Thanks for this tutorial bucky and and keep up the good work!.

realtalkjames
Автор

you know the video is going to be very good when it starts with "Alllrghty mi maties"

Jonnzee
welcome to shbcf.ru