Real Python: The Real Python Podcast – Episode #65: Expanding the International Python Community With the PSF
Link: https://realpython.com/podcasts/rpp/65/
The popularity of Python is continuing to grow Developers across the globe are embracing the language. How is Python being used in all of these different countries? How does an organization like the P
Link: https://realpython.com/podcasts/rpp/65/
The popularity of Python is continuing to grow Developers across the globe are embracing the language. How is Python being used in all of these different countries? How does an organization like the P
Realpython
Episode #65: Expanding the International Python Community With the PSF – The Real Python Podcast
The popularity of Python is continuing to grow Developers across the globe are embracing the language. How is Python being used in all of these different countries? How does an organization like the Python Software Foundation (PSF) work toward the goals in…
death and gravity: When your functions take the same arguments, consider using a class: counter-examples
Link: https://death.andgravity.com/more-arguments
In a previous article,
I talk about this heuristic for using classes in Python:
If you have functions that take the same set of arguments, consider using a class.
Thing is, heuristics don't always w
Link: https://death.andgravity.com/more-arguments
In a previous article,
I talk about this heuristic for using classes in Python:
If you have functions that take the same set of arguments, consider using a class.
Thing is, heuristics don't always w
Andgravity
When your functions take the same arguments, consider using a class: counter-examples - death and gravity
In this article, we look at a few real-world examples where functions taking the same arguments don't necessarily make a class, as counter-examples to a heuristic for using classes in Python.
Stack Abuse: Matplotlib: Turn Off Axis (Spines, Tick Labels, Axis Labels and Grid)
Link: https://stackabuse.com/matplotlib-turn-off-axis-spines-ticklabels-axislabels-grid
Introduction
Matplotlib is one of the most widely used data visualization libraries in Python. Much of Matplotlib's popularity comes from its customization options - you can tweak just about any eleme
Link: https://stackabuse.com/matplotlib-turn-off-axis-spines-ticklabels-axislabels-grid
Introduction
Matplotlib is one of the most widely used data visualization libraries in Python. Much of Matplotlib's popularity comes from its customization options - you can tweak just about any eleme
Stack Abuse
Matplotlib: Turn Off Axis (Spines, Tick Labels, Axis Labels and Grid)
In this guide, we'll take a look at how to turn off the axis, as well as its constituent elements individually in Matplotlib.
Python Engineering at Microsoft: Python in Visual Studio Code – June 2021 Release
Link: https://devblogs.microsoft.com/python/python-in-visual-studio-code-june-2021-release/
We are pleased to announce that the June 2021 release of the Python Extension for Visual Studio Code is now available. You can download the Python extension from the Marketplace, or install it directl
Link: https://devblogs.microsoft.com/python/python-in-visual-studio-code-june-2021-release/
We are pleased to announce that the June 2021 release of the Python Extension for Visual Studio Code is now available. You can download the Python extension from the Marketplace, or install it directl
Test and Code: 158: TDD in Swift - Gio
Link: https://testandcode.com/158
Iterative processes that include writing test code and production code together, such as TDD, help make coding fun.
All of us that care about developing quality code with the help of testing can lea
Link: https://testandcode.com/158
Iterative processes that include writing test code and production code together, such as TDD, help make coding fun.
All of us that care about developing quality code with the help of testing can lea
Test & Code : Python Testing
Test & Code : Python Testing 158: TDD in Swift - Gio
Iterative processes that include writing test code and production code together, such as TDD, help make coding fun. Gio Lodi, author of TDD in Swift, joins the show to discuss Test Driven Development, software workflows, bottom up vs top down, rapid feedback…
Weekly Python StackOverflow Report: (cclxxx) stackoverflow python report
Link: http://python-weekly.blogspot.com/2021/06/cclxxx-stackoverflow-python-report.html
These are the ten most rated questions at Stack Overflow last week.Between brackets: [question score / answers count]Build date: 2021-06-19 16:27:27 GMTWhy is Python recursion so expensive and what ca
Link: http://python-weekly.blogspot.com/2021/06/cclxxx-stackoverflow-python-report.html
These are the ten most rated questions at Stack Overflow last week.Between brackets: [question score / answers count]Build date: 2021-06-19 16:27:27 GMTWhy is Python recursion so expensive and what ca
Blogspot
(cclxxx) stackoverflow python report
These are the ten most rated questions at Stack Overflow last week. Between brackets: [ question score / answers count] Build date: 2021...
Talk Python to Me: #321: HTMX - Clean, Dynamic HTML Pages
Link: https://talkpython.fm/episodes/show/321/htmx-clean-dynamic-html-pages
Have you wanted to add more interactivity and liveness to your web application? If you built it using Flask, Django, or some other Python web framework, that thought probably didn't fill you with joy.
Link: https://talkpython.fm/episodes/show/321/htmx-clean-dynamic-html-pages
Have you wanted to add more interactivity and liveness to your web application? If you built it using Flask, Django, or some other Python web framework, that thought probably didn't fill you with joy.
talkpython.fm
HTMX - Clean, Dynamic HTML Pages
Have you wanted to add more interactivity and liveness to your web application? If you built it using Flask, Django, or some other Python web framework, that thought probably didn't fill you with joy. Because it might mean that you need to change a bunch…
Mike Driscoll: PyDev of the Week: James Murphy
Link: https://www.blog.pythonlibrary.org/2021/06/21/pydev-of-the-week-james-murphy/
This week we welcome James Murphy as our PyDev of the Week! James is the founder of mCoding and also has a popular Python tutorial channel on YouTube. You can also see what James is up to over on GitH
Link: https://www.blog.pythonlibrary.org/2021/06/21/pydev-of-the-week-james-murphy/
This week we welcome James Murphy as our PyDev of the Week! James is the founder of mCoding and also has a popular Python tutorial channel on YouTube. You can also see what James is up to over on GitH
Mouse Vs Python
PyDev of the Week: James Murphy
Gain practical, real-world Python skills with our resources and pathway
Real Python: Simplify Complex Numbers With Python
Link: https://realpython.com/python-complex-numbers/
Most general-purpose programming languages have either no support or limited support for complex numbers. Your typical options are learning some specialized tool like MATLAB or finding a third-party l
Link: https://realpython.com/python-complex-numbers/
Most general-purpose programming languages have either no support or limited support for complex numbers. Your typical options are learning some specialized tool like MATLAB or finding a third-party l
Realpython
Simplify Complex Numbers With Python – Real Python
In this tutorial, you'll learn about the unique treatment of complex numbers in Python. Complex numbers are a convenient tool for solving scientific and engineering problems. You'll experience the elegance of using complex numbers in Python with several hands…
Python Morsels: Module vs Script in Python
Link: https://www.pythonmorsels.com/topics/module-vs-script/
A distinction is often made between .py files that represent "modules" vs "scripts" (aka "programs").
What's a script?
A script or program is a .py file that's meant to be run directly.
Here's an extr
Link: https://www.pythonmorsels.com/topics/module-vs-script/
A distinction is often made between .py files that represent "modules" vs "scripts" (aka "programs").
What's a script?
A script or program is a .py file that's meant to be run directly.
Here's an extr
Pythonmorsels
Module vs Script in Python
Python Morsels: Beginner Python Resources
Link: https://www.pythonmorsels.com/topics/beginner-python-resources/
I get this question a lot: Where should I start to learn Python?
While I do hold Intro to Python team trainings, Python Morsels is currently focused on continued Python learning, that is everything ju
Link: https://www.pythonmorsels.com/topics/beginner-python-resources/
I get this question a lot: Where should I start to learn Python?
While I do hold Intro to Python team trainings, Python Morsels is currently focused on continued Python learning, that is everything ju
Pythonmorsels
Beginner Python Resources
These are my recommendations for books and courses to get started with Python. This list includes recommendations for folks brand new to programming as well as experienced programmers.
Python⇒Speed: Measuring memory usage in Python: it's tricky!
Link: https://pythonspeed.com/articles/measuring-memory-python/
If you want your program to use less memory, you will need to measure memory usage.
You’ll want to measure the current usage, and then you’ll need to ensure it’s using less memory once you make some i
Link: https://pythonspeed.com/articles/measuring-memory-python/
If you want your program to use less memory, you will need to measure memory usage.
You’ll want to measure the current usage, and then you’ll need to ensure it’s using less memory once you make some i
Python⇒Speed
Measuring memory usage in Python: it’s tricky!
Measuring your Python program’s memory usage is not as straightforward as you might think. Learn two techniques, and the tradeoffs between them.
Montreal Python User Group: PyCon 2021 Videos are online
Link: https://montrealpython.org/en/2021/06/pycon-2021-vids/
PyCon took place online this year. We are sad we didn't get a chance to meet our fellow Pythonistas in person, but we are still glad for the opportunity to watch high quality talks from many accomplis
Link: https://montrealpython.org/en/2021/06/pycon-2021-vids/
PyCon took place online this year. We are sad we didn't get a chance to meet our fellow Pythonistas in person, but we are still glad for the opportunity to watch high quality talks from many accomplis
Dan Stromberg: Python 3.x threading comparison
Link: http://strombrg.blogspot.com/2021/06/python-3x-threading-comparison.html
I've put a comparison of different Python runtimes here. In short, CPython, but also Pypy3 and Nuitka, threaded poorly. This while the Python for tiny systems, Micropython, threaded quite well - at l
Link: http://strombrg.blogspot.com/2021/06/python-3x-threading-comparison.html
I've put a comparison of different Python runtimes here. In short, CPython, but also Pypy3 and Nuitka, threaded poorly. This while the Python for tiny systems, Micropython, threaded quite well - at l
Blogspot
Python 3.x threading comparison
I've put a comparison of different Python runtimes here . In short, CPython, but also Pypy3 and Nuitka, threaded poorly. This while the P...
Real Python: Python vs JavaScript for Python Developers
Link: https://realpython.com/courses/python-vs-javascript-for-python-devs/
Python isn’t the only language out there, and one of the other languages frequently fighting Python for the top of the “most popular” lists is JavaScript. JavaScript is the de facto language on the we
Link: https://realpython.com/courses/python-vs-javascript-for-python-devs/
Python isn’t the only language out there, and one of the other languages frequently fighting Python for the top of the “most popular” lists is JavaScript. JavaScript is the de facto language on the we
Realpython
Python vs JavaScript for Python Developers – Real Python
Python and JavaScript are two of the most popular programming languages in the world. In this course, you'll take a deep dive into the JavaScript ecosystem by comparing Python vs JavaScript. You'll learn the jargon, language history, and best practices from…
Python for Beginners: Complex numbers in Python
Link: https://www.pythonforbeginners.com/data-types/complex-numbers-in-python
While working on data science, machine learning or scientific calculations, we often need to perform calculations on numeric data types including complex numbers. In this article, we will learn how
Link: https://www.pythonforbeginners.com/data-types/complex-numbers-in-python
While working on data science, machine learning or scientific calculations, we often need to perform calculations on numeric data types including complex numbers. In this article, we will learn how
PythonForBeginners.com
Complex numbers in Python - PythonForBeginners.com
Complex numbers in Python will help you improve your python skills with easy to follow examples and tutorials. Click here to view code examples.
Hynek Schlawack: Subclassing in Python Redux
Link: https://hynek.me/articles/python-subclassing-redux/
The conflict between subclassing and composition is as old as object-oriented programming. The latest crop of languages like Go or Rust prove that you don’t need subclassing to successfully write code
Link: https://hynek.me/articles/python-subclassing-redux/
The conflict between subclassing and composition is as old as object-oriented programming. The latest crop of languages like Go or Rust prove that you don’t need subclassing to successfully write code
Hynek Schlawack
Subclassing in Python Redux
The conflict between subclassing and composition is as old as object-oriented programming. The latest crop of languages like Go or Rust prove that you don’t need subclassing to successfully write code. But what’s a pragmatic approach to subclassing in Python…
PyCoder’s Weekly: Issue #478 (June 22, 2021)
Link: https://pycoders.com/issues/478
#478 – JUNE 22, 2021 View in Browser » How to Pivot and Plot Data With Pandas One of the challenges of working with data is knowing how to manipulate the data format for a particular analysis. A
Link: https://pycoders.com/issues/478
#478 – JUNE 22, 2021 View in Browser » How to Pivot and Plot Data With Pandas One of the challenges of working with data is knowing how to manipulate the data format for a particular analysis. A
Pycoders
PyCoder’s Weekly | Issue #478
Issue #478 of the PyCoder’s Weekly newsletter, published June 22, 2021.
Podcast.__init__: Finding The Core Of Python For A Bright Future With Brett Cannon
Link: https://www.pythonpodcast.com/modern-python-brett-cannon-episode-320/
Brett Cannon has been a long-time contributor to the Python language and community in many ways. In this episode he shares some of his work and thoughts on modernizing the ecosystem around the languag
Link: https://www.pythonpodcast.com/modern-python-brett-cannon-episode-320/
Brett Cannon has been a long-time contributor to the Python language and community in many ways. In this episode he shares some of his work and thoughts on modernizing the ecosystem around the languag
The Python Podcast.__init__
The Python Podcast.__init__: Finding The Core Of Python For A Bright Future With Brett Cannon
A meandering exploration of Brett Cannon's work to standardize the Python language and packaging ecosystem, and how that will keep it relevant long into the future.
Mike Driscoll: Creating an Animated GIF with Python
Link: https://www.blog.pythonlibrary.org/2021/06/23/creating-an-animated-gif-with-python/
Animated GIFs are an image type that contains multiple images with slight differences. These are then played back kind of like a cartoon is. You could even think of it as a flip-book with a stick man
Link: https://www.blog.pythonlibrary.org/2021/06/23/creating-an-animated-gif-with-python/
Animated GIFs are an image type that contains multiple images with slight differences. These are then played back kind of like a cartoon is. You could even think of it as a flip-book with a stick man
Mouse Vs Python
Creating an Animated GIF with Python - Mouse Vs Python
Animated GIFs are an image type that contains multiple images with slight differences. These are then played back kind of like a cartoon is. You could