New: pyqt5All contenthive-129948krhive-196917zzanhive-185836hive-183959hive-180932steemhive-166405hive-144064hive-150122hive-101145uncommonlabhive-188619hive-183397hive-184714bitcoinhive-145157photographyhive-193637hive-180301krsuccesshive-103599lifehive-139150TrendingNewHotLikerscodemy (64)in programming • 3 years agoBlackjack Five Card Win - PyQt5 GUI Thursdays #53In this video we'll fix the five card win problem for our blackjack game with PyQt5 and Python. In Blackjack, if you get dealt five cards without busting, you automatically win. So we need to…codemy (64)in python • 3 years agoBlackjack Player Stand And Dealer Hit - PyQt5 GUI Thursdays #52In this video we'll work on the Stand Function for the Player and Deal out more cards for the Dealer. After the Player stands, we need to determine what to do with the dealer. In Blackjack, the…codemy (64)in pyqt5 • 3 years agoBlackjack Convert Aces To One Point - PyQt5 GUI Thursdays #51In this video I'll show you how to convert aces from 11 to 1 for our Blackjack game with Pyqt5 and Python. In Blackjack, an Ace can be worth 11 points or 1 point depending on whether or not you…codemy (64)in coding • 3 years agoBlackjack Hit Me - PyQt5 GUI Thursdays #50In this video I'll show you how to add the "Hit Me" function for our Blackjack game with Tkinter and Python. We want the player to be able to get additional cards until they either "stand", "win"…codemy (64)in diy • 3 years agoPush Blackjack Tie - PyQt5 GUI Thursdays #49In this video I'll show you how to determine if there's a tie or push when the game first starts. In Blackjack, when the game starts, if both player have 21 then the game is a tie...or push. In…codemy (64)in programming • 3 years agoCheck For Blackjack - PyQt5 GUI Thursdays #48In this video we'll check for Blackjack when the game starts. When the cards are first dealt, if either player has 21 points right away - that's called Blackjack and that player wins. In this…codemy (64)in python • 3 years agoBuild A Blackjack Card Game - PyQt5 GUI Thursdays #47In this video I'll show you how to build a blackjack game for PyQT5 and Python. We'll take the code from a couple videos ago when we built our card deck. We'll modify that deck to deal out a…codemy (64)in pyqt5 • 3 years agoCreate The Card Game "War" - PyQt5 GUI Thursdays #46In this video I'll show you how to create the card game "War" for PyQT5 and Python. War is a basic card game where each player is dealt one card. The player with the highest card wins. We'll…codemy (64)in coding • 3 years agoCreate And Deal A Deck Of Cards - PyQt5 GUI Thursdays #45In this video I'll show you how to create a deck of cards with images for PyQt5 and Python. After we create our deck of cards, we'll shuffle the cards and deal them out to a dealer and a player.…codemy (64)in diy • 3 years agoBind Text Box Text To Label - PyQt5 GUI Thursdays #44In this video I'll show you how to bind text from a text box to a label with PyQt5 and Python. What we want is to type into a text box and have a label update with whatever we type in the line…codemy (64)in programming • 3 years agoHow To Hide or Show Widgets From GUI - PyQt5 GUI Thursdays #42In this video I'll show you how to hide and unhide widgets with PyQT5 and Python. We'll create a simple GUI in the PyQT5 Designer with a button and a line edit box. When you click the button it…codemy (64)in python • 3 years agoAdd Text To Images With Pillow - PyQt5 GUI Thursdays #41In this video I'll show you how to add text to images in PyQT5 using Pillow and Python. Adding text to images is pretty simple using PIL, the Python image library. In this video I'll show you…codemy (64)in pyqt5 • 3 years agoVertical Sliders - PyQt5 GUI Thursdays #41In this video I'll show you how to use vertical sliders in your PyQT5 app. We'll create the gui using the PyQT5 Designer and the vertical slider widget. I'll show you how to change the…codemy (64)in coding • 3 years agoHorizontal Sliders - PyQt5 GUI Thursdays #40In this video I'll show you how to use horizontal sliders in your PyQT5 app. We'll create the gui using the PyQT5 Designer and the slider widget. I'll also show you how to change the properties…codemy (64)in diy • 3 years agoHow To Add Text To Speech - PyQt5 GUI Thursdays #39In this video we'll add text to speech capabilities to our translation app with Pyqt5 and Python. In the last video we created this fun translation app. In this video we'll use Pyttsx3 to add text…codemy (64)in programming • 3 years agoLanguage Translation App! - PyQt5 GUI Thursdays #38In this video we'll create a cool language translator app for PyQT5and Python! It's easy to grab a list of languages using Googletrans, and then even eaier to translate text using TextBlob. No…codemy (64)in python • 3 years agoHover and Focus Effects For Forms and Buttons - PyQt5 GUI Thursdays #37In this video we'll style our forms and buttons with the Focus and Hover effects using CSS Stylesheets with PyQT5 and the Designer. Stylesheets are super powerful for styling your PyQT5 app, and…codemy (64)in pyqt5 • 3 years agoMultiple Windows Inside Your App - PyQt5 GUI Thursdays #36In this video we'll add multiple windows inside our PyQT5 app with the QMDIArea Widget! In this video we'll create a button that adds a new window into our app every time we click it. You can…codemy (64)in coding • 3 years agoCreate An LCD Clock - PyQt5 GUI Thursdays #35In this video we'll build an LCD Clock that automatically updates every second using PyQT5 and Python. We'll use the LCD Number widget in the PyQT5 Designer. We'll also use QTime and a QTimer…codemy (64)in diy • 3 years agoHow To Use The Calendar Widget - PyQt5 GUI Thursdays #34In this video I'll show you how to use the Calendar widget with PyQT5 and Python. The Calendar widget is built into the PYQT5 Designer so it's super easy to drag and drop it into your app. I'll…