Weekly Python StackOverflow Report: (ccxciii) stackoverflow python report
Link: http://python-weekly.blogspot.com/2021/09/ccxciii-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-09-18 20:56:51 GMTInvoking a constructor in a 'with' statement - [
Link: http://python-weekly.blogspot.com/2021/09/ccxciii-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-09-18 20:56:51 GMTInvoking a constructor in a 'with' statement - [
Blogspot
(ccxciii) stackoverflow python report
These are the ten most rated questions at Stack Overflow last week. Between brackets: [ question score / answers count] Build date: 2021...
Mike Driscoll: Python 101 – An Intro to Jupyter Notebook
Link: https://www.blog.pythonlibrary.org/2021/09/19/python-101-an-intro-to-jupyter-notebook/
The Jupyter Notebook is an open-source web application that allows you to create and share documents that contain code, equations, visualizations, and formatted text. By default, Jupyter Notebook runs
Link: https://www.blog.pythonlibrary.org/2021/09/19/python-101-an-intro-to-jupyter-notebook/
The Jupyter Notebook is an open-source web application that allows you to create and share documents that contain code, equations, visualizations, and formatted text. By default, Jupyter Notebook runs
Mouse Vs Python
Python 101 - An Intro to Jupyter Notebook - Mouse Vs Python
Learn how to use the popular Jupyter Notebook. You will learn how to create and edit notebooks, use Markdown, export and more!
Łukasz Langa: Weekly Report 2021, September 13 - 19
Link: https://lukasz.langa.pl/3b2b3568-98e6-44b6-876c-a5d8fd625167/
This week in numbers: closed 8 issues, authored 1 PR, closed 49 PRs, and reviewed 6. No highlights this time since I badly hoped to be able to squeeze in some work on Saturday but that turned out not
Link: https://lukasz.langa.pl/3b2b3568-98e6-44b6-876c-a5d8fd625167/
This week in numbers: closed 8 issues, authored 1 PR, closed 49 PRs, and reviewed 6. No highlights this time since I badly hoped to be able to squeeze in some work on Saturday but that turned out not
lukasz.langa.pl
Weekly Report 2021, September 13 - 19 - Łukasz Langa
This week in numbers: closed 8 issues, authored 1 PR, closed 49 PRs, and reviewed 6. No highlights this time since I badly hoped to be able to squeeze in some work on Saturday but that turned out not to be possible (it’s birthday season in my family).
Podcast.__init__: Experimenting With Reinforcement Learning Using MushroomRL
Link: https://www.pythonpodcast.com/mushroomrl-reinforcement-learning-library-episode-332/
Reinforcement learning is a branch of machine learning and AI that has a lot of promise for applications that need to evolve with changes to their inputs. To support the research happening in the fiel
Link: https://www.pythonpodcast.com/mushroomrl-reinforcement-learning-library-episode-332/
Reinforcement learning is a branch of machine learning and AI that has a lot of promise for applications that need to evolve with changes to their inputs. To support the research happening in the fiel
The Python Podcast.__init__
The Python Podcast.__init__: Experimenting With Reinforcement Learning Using MushroomRL
An interview about the MushroomRL library for experimenting with reinforcement learning techniques and its use for researching robotics applications.
Mike Driscoll: PyDev of the Week: Tonya Sims
Link: https://www.blog.pythonlibrary.org/2021/09/20/pydev-of-the-week-tonya-sims/
This week we welcome Tonya Sims (@TonyaSims) as our PyDev of the Week! Tonya is a Python Developer Advocate for Vonage and is an active member of the Real Python community. Tonya recently gave a talk
Link: https://www.blog.pythonlibrary.org/2021/09/20/pydev-of-the-week-tonya-sims/
This week we welcome Tonya Sims (@TonyaSims) as our PyDev of the Week! Tonya is a Python Developer Advocate for Vonage and is an active member of the Real Python community. Tonya recently gave a talk
Mouse Vs Python
PyDev of the Week: Tonya Sims - Mouse Vs Python
Learn how Tonya went from a pro basketball player in the WNBA to a Python developer advocate and conference speaker in this interview!
Real Python: Using the "and" Boolean Operator in Python
Link: https://realpython.com/python-and-operator/
Python has three Boolean operators, or logical operators: and, or, and not. You can use them to check if certain conditions are met before deciding the execution path your programs will follow. In thi
Link: https://realpython.com/python-and-operator/
Python has three Boolean operators, or logical operators: and, or, and not. You can use them to check if certain conditions are met before deciding the execution path your programs will follow. In thi
Realpython
Using the "and" Boolean Operator in Python – Real Python
In this step-by-step tutorial, you'll learn how Python's "and" operator works and how to use it in your code. You'll get to know its special features and see what kind of programming problems you can solve by using "and" in Python.
Brett Cannon: (Not) unravelling generator expressions
Link: https://snarky.ca/not-unravelling-generator-expressions/
In this post on Python&aposs syntactic sugar, I want to try to tackle generator expressions. If you look at the language definition for generator expressions you will see that it says, "[a] generator
Link: https://snarky.ca/not-unravelling-generator-expressions/
In this post on Python&aposs syntactic sugar, I want to try to tackle generator expressions. If you look at the language definition for generator expressions you will see that it says, "[a] generator
Tall, Snarky Canadian
Unravelling generator expressions
In this post on Python's syntactic sugar
[https://snarky.ca/tag/syntactic-sugar/], I want to try to tackle generator
expressions
[https://docs.python.org/3.8/reference/expressions.html#generator-expressions].
If you look at the language definition for generator…
[https://snarky.ca/tag/syntactic-sugar/], I want to try to tackle generator
expressions
[https://docs.python.org/3.8/reference/expressions.html#generator-expressions].
If you look at the language definition for generator…
Python for Beginners: Find the mirror image of a binary tree
Link: https://www.pythonforbeginners.com/data-structures/find-the-mirror-image-of-a-binary-tree
Unlike a Python dictionary, a list, or a set, elements of a binary tree are represented in a hierarchical manner. Having hierarchy in a binary tree allows one to find its mirror image as each element
Link: https://www.pythonforbeginners.com/data-structures/find-the-mirror-image-of-a-binary-tree
Unlike a Python dictionary, a list, or a set, elements of a binary tree are represented in a hierarchical manner. Having hierarchy in a binary tree allows one to find its mirror image as each element
PythonForBeginners.com
Find the mirror image of a binary tree - PythonForBeginners.com
Find the mirror image of a binary tree will help you improve your python skills with easy to follow examples and tutorials.
Mike Driscoll: How to Send Emails with Python
Link: https://www.blog.pythonlibrary.org/2021/09/21/how-to-send-emails-with-python/
Python provides a couple of really nice modules that you can use to craft emails with. They are the email and smtplib modules. Instead of going over various methods in these two modules, you’ll spend
Link: https://www.blog.pythonlibrary.org/2021/09/21/how-to-send-emails-with-python/
Python provides a couple of really nice modules that you can use to craft emails with. They are the email and smtplib modules. Instead of going over various methods in these two modules, you’ll spend
Mouse Vs Python
How to Send Emails with Python - Mouse Vs Python
Learn how to send emails with Python using the smtplib and email modules. You'll also learn how to send attachments
Real Python: Pass by Reference in Python: Best Practices
Link: https://realpython.com/courses/pass-by-reference-python-best-practices/
After gaining some familiarity with Python, you may notice cases in which your functions don’t modify arguments in place as you might expect, especially if you’re familiar with other programming langu
Link: https://realpython.com/courses/pass-by-reference-python-best-practices/
After gaining some familiarity with Python, you may notice cases in which your functions don’t modify arguments in place as you might expect, especially if you’re familiar with other programming langu
Realpython
Pass by Reference in Python: Best Practices – Real Python
In this course, you'll explore the concept of passing by reference and learn how it relates to Python's own system for handling function arguments. You'll look at several use cases for passing by reference and learn some best practices for implementing pass…
Django Weblog: Django 4.0 alpha 1 released
Link: https://www.djangoproject.com/weblog/2021/sep/21/django-40-alpha-1-released/
Django 4.0 alpha 1 is now available. It represents the first stage in the 4.0
release cycle and is an opportunity for you to try out the changes coming in
Django 4.0.
Django 4.0 has a abundance of new
Link: https://www.djangoproject.com/weblog/2021/sep/21/django-40-alpha-1-released/
Django 4.0 alpha 1 is now available. It represents the first stage in the 4.0
release cycle and is an opportunity for you to try out the changes coming in
Django 4.0.
Django 4.0 has a abundance of new
PyCoder’s Weekly: Issue #491 (Sept. 21, 2021)
Link: https://pycoders.com/issues/491
#491 – SEPTEMBER 21, 2021 View in Browser » Structural Pattern Matching in Python 3.10 “Python 3.10, which is due out in early October 2021, will include a large new language feature called stru
Link: https://pycoders.com/issues/491
#491 – SEPTEMBER 21, 2021 View in Browser » Structural Pattern Matching in Python 3.10 “Python 3.10, which is due out in early October 2021, will include a large new language feature called stru
Pycoders
PyCoder’s Weekly | Issue #491
Issue #491 of the PyCoder’s Weekly newsletter, published Sept. 21, 2021.
Brett Cannon: Unravelling comprehensions
Link: https://snarky.ca/unravelling-comprehensions/
After failing to unravel generator expressions, in this post as part as my Python syntactic sugar post series I want to tackle comprehensions. Thanks to a change made in Python 3.0, recreating compreh
Link: https://snarky.ca/unravelling-comprehensions/
After failing to unravel generator expressions, in this post as part as my Python syntactic sugar post series I want to tackle comprehensions. Thanks to a change made in Python 3.0, recreating compreh
Tall, Snarky Canadian
Unravelling comprehensions
After failing to unravel generator expressions, in this post as part as my Python syntactic sugar post series I want to tackle comprehensions. Thanks to a change made in Python 3.0, recreating comprehensions using generator expressions is straightforward…
Mike Driscoll: Creating an MP3 Tagger GUI with wxPython
Link: https://www.blog.pythonlibrary.org/2021/09/22/creating-an-mp3-tagger-gui-with-wxpython/
I don’t know about you, but I enjoy listening to music. As an avid music fan, I also like to rip my CDs to MP3 so I can listen to my music on the go a bit easier. There is still a lot of music that is
Link: https://www.blog.pythonlibrary.org/2021/09/22/creating-an-mp3-tagger-gui-with-wxpython/
I don’t know about you, but I enjoy listening to music. As an avid music fan, I also like to rip my CDs to MP3 so I can listen to my music on the go a bit easier. There is still a lot of music that is
Mouse Vs Python
Creating an MP3 Tagger GUI with wxPython - Mouse Vs Python
Learn how to create a cross-platform MP3 tagger GUI with Python using the wxPython and eyeD3 packages. Soon you'll be able to edit MP3s yourself!
Stack Abuse: Guide to Python's keyboard Module
Link: https://stackabuse.com/guide-to-pythons-keyboard-module/
Introduction
Python is one of the most suitable languages for automating tasks. Whether it's repeatable (ethical) web scraping after some time period, starting some programs on a computer start up, or
Link: https://stackabuse.com/guide-to-pythons-keyboard-module/
Introduction
Python is one of the most suitable languages for automating tasks. Whether it's repeatable (ethical) web scraping after some time period, starting some programs on a computer start up, or
Stack Abuse
Guide to Python's keyboard Module
In this guide, we'll take a look at the experimental keyboard module in Python and how to automate keyboard input and keystrokes easily.
Python⇒Speed: Scanning your Conda environment for security vulnerabilities
Link: https://pythonspeed.com/articles/conda-security-scans/
You don’t want to deploy an application that has security vulnerabilities.
That means your own code, but also third-party dependencies: it doesn’t matter how secure your code is if it’s exposing a TLS
Link: https://pythonspeed.com/articles/conda-security-scans/
You don’t want to deploy an application that has security vulnerabilities.
That means your own code, but also third-party dependencies: it doesn’t matter how secure your code is if it’s exposing a TLS
Python⇒Speed
Scanning your Conda environment for security vulnerabilities
Learn how to check your Conda environment and packages for security vulnerabilities.
Real Python: The Django Template Language: Tags and Filters
Link: https://realpython.com/django-templates-tags-filters/
Django is a powerful framework for creating web applications in Python. Its features include database models, routing URLs, authentication, user management, administrative tools, and a template langua
Link: https://realpython.com/django-templates-tags-filters/
Django is a powerful framework for creating web applications in Python. Its features include database models, routing URLs, authentication, user management, administrative tools, and a template langua
Realpython
Django Templates: Built-In Tags and Filters – Real Python
Django templates use their own mini-language that's inspired by Python. This tutorial covers Django template tags and filters, explaining how to compile and use templates. It covers conditional blocks, looping, and inheritance in tags as well as filters for…
Python for Beginners: Difference between yield and return in Python
Link: https://www.pythonforbeginners.com/basics/difference-between-yield-and-return-in-python
You might have used yield and return statements while programming in python. In this article, we will discuss the theoretical concepts of return and yield keywords. We will also look at the difference
Link: https://www.pythonforbeginners.com/basics/difference-between-yield-and-return-in-python
You might have used yield and return statements while programming in python. In this article, we will discuss the theoretical concepts of return and yield keywords. We will also look at the difference
PythonForBeginners.com
Difference between yield and return in Python - PythonForBeginners.com
Difference between yield and return in Python will help you improve your python skills with easy to follow examples and tutorials.
Stack Abuse: Machine Learning | Overfitting Is Your Friend - Not Your Foe
Link: https://stackabuse.com/machine-learning-overfitting-is-your-friend-not-your-foe/
Note: These are the musings of a man - flawed and prone to misjudgement. The point of writing this is to promote a discussion on the topic, not to be right or contrarian. If any glaring mistakes are p
Link: https://stackabuse.com/machine-learning-overfitting-is-your-friend-not-your-foe/
Note: These are the musings of a man - flawed and prone to misjudgement. The point of writing this is to promote a discussion on the topic, not to be right or contrarian. If any glaring mistakes are p
Stack Abuse
Machine Learning: Overfitting Is Your Friend, Not Your Foe
In this piece, the Friendly Overfitting Argument is laid out, as well as when it doesn't hold. Is overfitting in Machine Learning and Artificial Intelligence really as bad as people make it out to be?
Python Bytes: #251 A 95% complete episode (wait for it)
Link: https://pythonbytes.fm/episodes/show/251/a-95-complete-episode-wait-for-it
<p><strong>Watch the live stream:</strong></p>
<a href='https://www.youtube.com/watch?v=ssB7SouW1tk' style='font-weight: bold;'>Watch on YouTube</a><br>
<br>
<p><strong>About the show</strong></p>
Link: https://pythonbytes.fm/episodes/show/251/a-95-complete-episode-wait-for-it
<p><strong>Watch the live stream:</strong></p>
<a href='https://www.youtube.com/watch?v=ssB7SouW1tk' style='font-weight: bold;'>Watch on YouTube</a><br>
<br>
<p><strong>About the show</strong></p>
pythonbytes.fm
A 95% complete episode (wait for it)
News and announcements from the Python community for the week of Sep 22nd, 2021
Python Software Foundation: Katia Lira Awarded the PSF Community Service Award for Q2 2020
Link: http://feedproxy.google.com/~r/PythonSoftwareFoundationNews/~3/qwHz7RZ7wBQ/katia-lira-awarded-psf-community.html
Katia Lira, Software Engineer from Mexico city, has been awarded the Python Software Foundation 2020 Q2 Community Service Award.RESOLVED, that the Python Software Foundation award the Q2 2020 Communi
Link: http://feedproxy.google.com/~r/PythonSoftwareFoundationNews/~3/qwHz7RZ7wBQ/katia-lira-awarded-psf-community.html
Katia Lira, Software Engineer from Mexico city, has been awarded the Python Software Foundation 2020 Q2 Community Service Award.RESOLVED, that the Python Software Foundation award the Q2 2020 Communi
Blogspot
Katia Lira Awarded the PSF Community Service Award for Q2 2020
Katia Lira , Software Engineer from Mexico city, has been awarded the Python Software Foundation 2020 Q2 Community Service Award. RESOLVED...