Artwork

Sisällön tarjoaa Real Python. Real Python tai sen podcast-alustan kumppani lataa ja toimittaa kaiken podcast-sisällön, mukaan lukien jaksot, grafiikat ja podcast-kuvaukset. Jos uskot jonkun käyttävän tekijänoikeudella suojattua teostasi ilman lupaasi, voit seurata tässä https://fi.player.fm/legal kuvattua prosessia.
Player FM - Podcast-sovellus
Siirry offline-tilaan Player FM avulla!

Looping With enumerate() and Python GUIs With PyQt

43:51
 
Jaa
 

Manage episode 279260479 series 2637014
Sisällön tarjoaa Real Python. Real Python tai sen podcast-alustan kumppani lataa ja toimittaa kaiken podcast-sisällön, mukaan lukien jaksot, grafiikat ja podcast-kuvaukset. Jos uskot jonkun käyttävän tekijänoikeudella suojattua teostasi ilman lupaasi, voit seurata tässä https://fi.player.fm/legal kuvattua prosessia.

If you’re coming to Python from a different language, you may not know about a useful tool for working with loops, Python’s built-in enumerate function. This week on the show, David Amos is here, and he has brought another batch of PyCoder’s Weekly articles and projects.

Along with the Real Python article covering the details of the enumerate function, we also talk about another article about constructing Python graphical user interface elements in PyQt.

David shares a couple of resources for data scientists, including an article about skills not taught in data science boot camps, and a project for creating synthetic data.

We also cover several other articles and projects from the Python community including, an update about youtubedl, hunting for malicious packages on PyPI, using Python’s bisect module, 73 examples to help you master f-strings, and game programming in Jupyter notebooks.

Course Spotlight: Formatting Python Strings

In this course, you’ll see two items to add to your Python string formatting toolkit. You’ll learn about Python’s string format method and the formatted string literal, or f-string. You’ll learn about these formatting techniques in detail and add them to your Python string formatting toolkit.

Topics:

  • 00:00:00 – Introduction
  • 00:01:53 – The youtube-dl Repository Has Been Restored on GitHub With Help From the Electronic Frontier Foundation
  • 00:04:12 – Python enumerate(): Simplify Looping With Counters
  • 00:07:24 – Hunting for Malicious Packages on PyPI
  • 00:14:31 – Sponsor: Scout APM
  • 00:15:31 – Using Python’s bisect module
  • 00:19:00 – 73 Examples to Help You Master Python’s f-Strings
  • 00:21:35 – 10 Python Skills They Don’t Teach in Bootcamp
  • 00:27:32 – Video Course Spotlight
  • 00:28:28 – Python and PyQt: Creating Menus, Toolbars, and Status Bars
  • 00:33:51 – SDV: Synthetic Data Generation for Tabular, Relational, Time Series Data
  • 00:38:19 – jupylet: Game Programming in Jupyter Notebooks
  • 00:42:59 – Thanks and goodbye

Show Links:

The youtube-dl Repository Has Been Restored on GitHub With Help From the Electronic Frontier Foundation

Python enumerate(): Simplify Looping With Counters – Once you learn about for loops in Python, you know that using an index to access items in a sequence isn’t very Pythonic. So what do you do when you need that index value? In this tutorial, you’ll learn all about Python’s built-in enumerate(), where it’s used, and how you can emulate its behavior.

Hunting for Malicious Packages on PyPI – Jordan Wright installed every package on PyPI to look for malicious content. And he didn’t just inspect code, he actually ran the packages. Brave soul! Learn how he set-up this project and what he learned on his adventure.

Using Python’s bisect module – Python’s bisect module has tools for searching and inserting values into sorted lists. It’s one of his “batteries-included” features that often gets overlooked, but can be a great tool for optimizing certain kinds of code.

73 Examples to Help You Master Python’s f-Strings – f-Strings might be one of the most beloved features in Python 3.6+. Here are 73 examples of how to use f-strings to improve your Python code.

10 Python Skills They Don’t Teach in Bootcamp – Here are ten practical and little-known pandas tips to help you take your skills to the next level.

Python and PyQt: Creating Menus, Toolbars, and Status Bars – In this step-by-step tutorial, you’ll learn how to create, customize, and use Python menus, toolbars, and status bars for creating GUI applications using PyQt.

Projects:

Additional Links:

Level up your Python skills with our expert-led courses:

Support the podcast & join our community of Pythonistas

  continue reading

202 jaksoa

Artwork
iconJaa
 
Manage episode 279260479 series 2637014
Sisällön tarjoaa Real Python. Real Python tai sen podcast-alustan kumppani lataa ja toimittaa kaiken podcast-sisällön, mukaan lukien jaksot, grafiikat ja podcast-kuvaukset. Jos uskot jonkun käyttävän tekijänoikeudella suojattua teostasi ilman lupaasi, voit seurata tässä https://fi.player.fm/legal kuvattua prosessia.

If you’re coming to Python from a different language, you may not know about a useful tool for working with loops, Python’s built-in enumerate function. This week on the show, David Amos is here, and he has brought another batch of PyCoder’s Weekly articles and projects.

Along with the Real Python article covering the details of the enumerate function, we also talk about another article about constructing Python graphical user interface elements in PyQt.

David shares a couple of resources for data scientists, including an article about skills not taught in data science boot camps, and a project for creating synthetic data.

We also cover several other articles and projects from the Python community including, an update about youtubedl, hunting for malicious packages on PyPI, using Python’s bisect module, 73 examples to help you master f-strings, and game programming in Jupyter notebooks.

Course Spotlight: Formatting Python Strings

In this course, you’ll see two items to add to your Python string formatting toolkit. You’ll learn about Python’s string format method and the formatted string literal, or f-string. You’ll learn about these formatting techniques in detail and add them to your Python string formatting toolkit.

Topics:

  • 00:00:00 – Introduction
  • 00:01:53 – The youtube-dl Repository Has Been Restored on GitHub With Help From the Electronic Frontier Foundation
  • 00:04:12 – Python enumerate(): Simplify Looping With Counters
  • 00:07:24 – Hunting for Malicious Packages on PyPI
  • 00:14:31 – Sponsor: Scout APM
  • 00:15:31 – Using Python’s bisect module
  • 00:19:00 – 73 Examples to Help You Master Python’s f-Strings
  • 00:21:35 – 10 Python Skills They Don’t Teach in Bootcamp
  • 00:27:32 – Video Course Spotlight
  • 00:28:28 – Python and PyQt: Creating Menus, Toolbars, and Status Bars
  • 00:33:51 – SDV: Synthetic Data Generation for Tabular, Relational, Time Series Data
  • 00:38:19 – jupylet: Game Programming in Jupyter Notebooks
  • 00:42:59 – Thanks and goodbye

Show Links:

The youtube-dl Repository Has Been Restored on GitHub With Help From the Electronic Frontier Foundation

Python enumerate(): Simplify Looping With Counters – Once you learn about for loops in Python, you know that using an index to access items in a sequence isn’t very Pythonic. So what do you do when you need that index value? In this tutorial, you’ll learn all about Python’s built-in enumerate(), where it’s used, and how you can emulate its behavior.

Hunting for Malicious Packages on PyPI – Jordan Wright installed every package on PyPI to look for malicious content. And he didn’t just inspect code, he actually ran the packages. Brave soul! Learn how he set-up this project and what he learned on his adventure.

Using Python’s bisect module – Python’s bisect module has tools for searching and inserting values into sorted lists. It’s one of his “batteries-included” features that often gets overlooked, but can be a great tool for optimizing certain kinds of code.

73 Examples to Help You Master Python’s f-Strings – f-Strings might be one of the most beloved features in Python 3.6+. Here are 73 examples of how to use f-strings to improve your Python code.

10 Python Skills They Don’t Teach in Bootcamp – Here are ten practical and little-known pandas tips to help you take your skills to the next level.

Python and PyQt: Creating Menus, Toolbars, and Status Bars – In this step-by-step tutorial, you’ll learn how to create, customize, and use Python menus, toolbars, and status bars for creating GUI applications using PyQt.

Projects:

Additional Links:

Level up your Python skills with our expert-led courses:

Support the podcast & join our community of Pythonistas

  continue reading

202 jaksoa

כל הפרקים

×
 
Loading …

Tervetuloa Player FM:n!

Player FM skannaa verkkoa löytääkseen korkealaatuisia podcasteja, joista voit nauttia juuri nyt. Se on paras podcast-sovellus ja toimii Androidilla, iPhonela, ja verkossa. Rekisteröidy sykronoidaksesi tilaukset laitteiden välillä.

 

Pikakäyttöopas