Introduction to GUIs in Python with PyQt5

Introduction to GUIs in Python with PyQt5

Clear Code

4 года назад

83,918 Просмотров

Ссылки и html тэги не поддерживаются


Комментарии:

Ankit Caring
Ankit Caring - 12.08.2023 17:53

Thanks for making such a concise video.
Starting from what's the prerequisite and explaining with animation.
Exactly the thing I need to hear.👍👍
p.s:- been done some editing , I know this kind of tutorial required alot of effort to create then directly just coding on a computer screen.

Ответить
Matthias Burger
Matthias Burger - 10.07.2022 23:20

thank you. finally its a little more clear.

Ответить
Amana patel
Amana patel - 23.02.2022 12:27

You should add source code for better understanding

Ответить
qlez
qlez - 09.01.2022 15:52

# I got buttons 0-9 done in 4 cheeky lines:
for x in range(9):
y = 2 if x == 0 else y+1 if x % 3 == 0 else y
container.layout().addWidget(qtw.QPushButton(str(9-x)), y, x-(y-2)*3, 1, 1)
container.layout().addWidget(qtw.QPushButton('0'), 6, 0, 1, 4)

Ответить
Frank Kwizera Mugwaneza
Frank Kwizera Mugwaneza - 06.01.2022 20:43

Thanks man

Ответить
Blue
Blue - 23.12.2021 21:57

Great tutorial by the way, thanks!

Ответить
Blue
Blue - 23.12.2021 21:53

Couldn't you create a function that returns a list of the buttons 0-9 instead of manually writing each one?
for i in range(10):
btn_list[i].append(qtw.QtPushButton(string(i))

Ответить
hfe18
hfe18 - 11.12.2021 09:39

This video rate should be more than Google play 5 star

Ответить
Ants&Co
Ants&Co - 23.10.2021 19:57

What iss your IDE

Ответить
SP
SP - 08.10.2021 18:11

the calculator just crashes after entering a number or clicking any of the buttons but you can probably figure out how to fix it ur self

Ответить
Drew Drew
Drew Drew - 04.10.2021 20:50

I kept getting syntax errors when I tried to type "Lambda" instead I had to use lowercase "lambda" to get it to work.

Ответить
Peter Breis
Peter Breis - 03.09.2021 22:58

Thank you very much. You are very clear and organised and the information is very useful.

Just one thing. I know English is your second language but you speak it very well, however your presentation is full of distracting typos, which meant I was not fully focusing on the lessons.

Ответить
George Garcia
George Garcia - 07.08.2021 15:32

too many ads. can't skip around without running into an ad

Ответить
GurN KerK
GurN KerK - 22.07.2021 20:15

Nice video! One question tho… Are u german cuz I think I heard it out but I am not sure and in school I struggle the most with listening tasks so would be nice if you could answer me!

Ответить
Zen
Zen - 02.07.2021 19:41

You have potential to get 1 million subs KEEP GOING FORWARD!!!!!!!!!!!!

Ответить
Alessandro Casol
Alessandro Casol - 14.06.2021 21:43

Disliked the misleading thumbnail but you're a good teacher and is always great to have someone who share's knowledge for free. Just use a thumbnail with the project you're teaching please

Ответить
sergey sviridov
sergey sviridov - 14.06.2021 01:58

Thank you for this video. What theme you using in this video?

Ответить
Lens
Lens - 02.06.2021 01:06

You should make the entire code available to look over in a pastebin or something. Sucks to have to skim through the video just to find one line.

Ответить
Prasoon Jha
Prasoon Jha - 09.05.2021 12:57

Please make a video on how can we integrate PyQt5 into Pygame to make our game more interactive (if it is possible).

Ответить
Craig Hollabaugh
Craig Hollabaugh - 06.05.2021 22:07

Hey thanks, just what I needed to get started.

Ответить