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
Python for Beginners: Nested List Comprehensions in Python
Link: https://www.pythonforbeginners.com/lists/nested-list-comprehensions-in-python
One way Python attracts programmers is by encouraging elegant, easy-to-read code. It does this through a variety of features, including list comprehension.
Writing more efficient code helps programme
Link: https://www.pythonforbeginners.com/lists/nested-list-comprehensions-in-python
One way Python attracts programmers is by encouraging elegant, easy-to-read code. It does this through a variety of features, including list comprehension.
Writing more efficient code helps programme
PythonForBeginners.com
Nested List Comprehensions in Python - PythonForBeginners.com
Nested List Comprehensions in Python will help you improve your python skills with easy to follow examples and tutorials. Click here to view code examples.
TestDriven.io: Built-in Permission Classes in Django Rest Framework
Link: https://testdriven.io/blog/built-in-permission-classes-drf/
This article looks at how the built-in permission classes work in Django REST Framework.
Link: https://testdriven.io/blog/built-in-permission-classes-drf/
This article looks at how the built-in permission classes work in Django REST Framework.
testdriven.io
Built-in Permission Classes in Django REST Framework
This article looks at how the built-in permission classes work in Django REST Framework.
Real Python: CPython Internals: Paperback Now Available!
Link: https://realpython.com/cpython-internals-paperback/
After almost two years of writing, reviewing, and testing, we’re delighted to announce that CPython Internals: Your Guide to the Python 3 Interpreter is now available in paperback!
Are there certain p
Link: https://realpython.com/cpython-internals-paperback/
After almost two years of writing, reviewing, and testing, we’re delighted to announce that CPython Internals: Your Guide to the Python 3 Interpreter is now available in paperback!
Are there certain p
Realpython
CPython Internals: Paperback Now Available! – Real Python
After almost two years of writing, reviewing, and testing, we're delighted to announce that CPython Internals: Your Guide to the Python 3 Interpreter is available in paperback! In this article, you'll see how the book can help you take your Python skills…
Quansight Labs Blog: Working with pytest on PyTorch
Link: https://labs.quansight.org/blog/2021/06/pytest-pytorch/
Prerequisites
To run the code in this post yourself, make sure you have torch, ipytest>0.9, and the plugin to be introduced pytest-pytorch installed.
pip install torch 'ipytest>0.9' pytest-
Link: https://labs.quansight.org/blog/2021/06/pytest-pytorch/
Prerequisites
To run the code in this post yourself, make sure you have torch, ipytest>0.9, and the plugin to be introduced pytest-pytorch installed.
pip install torch 'ipytest>0.9' pytest-
Quansight Labs
Working with pytest on PyTorch
Prerequisites
To run the code in this post yourself, make sure you have torch, ipytest>0.9, and the plugin to be introduced pytest-pytorch installed.
pip install torch 'ipytest>0.9' pytest
To run the code in this post yourself, make sure you have torch, ipytest>0.9, and the plugin to be introduced pytest-pytorch installed.
pip install torch 'ipytest>0.9' pytest
Peter Bengtsson: An effective and immutable way to turn two Python lists into one
Link: https://www.peterbe.com/plog/an-effective-and-immutable-way-to-turn-two-python-lists-into-one
To combine 2 lists into 2 use `+`.
Link: https://www.peterbe.com/plog/an-effective-and-immutable-way-to-turn-two-python-lists-into-one
To combine 2 lists into 2 use `+`.
Peterbe
An effective and immutable way to turn two Python lists into one - Peterbe.com
To combine 2 lists into 2 use `+`.
Python Bytes: #239 No module named pythonbytes
Link: https://pythonbytes.fm/episodes/show/239/no-module-named-pythonbytes
<p><strong>Watch the live stream:</strong></p>
<a href='https://www.youtube.com/watch?v=7ibdW3Posyg' style='font-weight: bold;'>Watch on YouTube</a><br>
<br>
<p><strong>About the show</strong></p>
Link: https://pythonbytes.fm/episodes/show/239/no-module-named-pythonbytes
<p><strong>Watch the live stream:</strong></p>
<a href='https://www.youtube.com/watch?v=7ibdW3Posyg' style='font-weight: bold;'>Watch on YouTube</a><br>
<br>
<p><strong>About the show</strong></p>
pythonbytes.fm
No module named pythonbytes
News and announcements from the Python community for the week of Jun 23rd, 2021
Daniel Roy Greenfeld: What's the Ultimate Reason for Working at Octopus Energy?
Link: https://daniel.feldroy.com/posts/whats-the-ultimate-reason-for-working-at-octopus-energy-part-2
On November 16, 2020, I started my first day of employment at Octopus Energy. A few days ago I discussed reasons why I enjoy my work and colleagues. In this article, I explain the ultimate reason I wo
Link: https://daniel.feldroy.com/posts/whats-the-ultimate-reason-for-working-at-octopus-energy-part-2
On November 16, 2020, I started my first day of employment at Octopus Energy. A few days ago I discussed reasons why I enjoy my work and colleagues. In this article, I explain the ultimate reason I wo
Daniel Roy Greenfeld
What's the Ultimate Reason for Working at Octopus Energy?
Wherin I conclude my discussion about why I work at Octopus Energy.