Real Python: Quiz: How Do You Choose Python Function Names?
Link: https://realpython.com/quizzes/python-function-names/
In this quiz, you’ll test your understanding of
how to choose Python function names.
By working through this quiz, you’ll revisit the rules and conventions for naming Python functions
and why they’re
Link: https://realpython.com/quizzes/python-function-names/
In this quiz, you’ll test your understanding of
how to choose Python function names.
By working through this quiz, you’ll revisit the rules and conventions for naming Python functions
and why they’re
Realpython
How Do You Choose Python Function Names? Quiz – Real Python
In this quiz, you'll test your understanding of how to choose Python function names.
By working through this quiz, you'll revisit the rules and conventions for naming Python functions
and why they're important for writing Pythonic code.
By working through this quiz, you'll revisit the rules and conventions for naming Python functions
and why they're important for writing Pythonic code.
scikit-learn: Interview with Yao Xiao, scikit-learn Team Member
Link: https://blog.scikit-learn.org/team/yao-interview/
Yao Xiao recently earned his undergraduate degree in mathematics and computer science. He wil
Link: https://blog.scikit-learn.org/team/yao-interview/
Yao Xiao recently earned his undergraduate degree in mathematics and computer science. He wil
scikit-learn Blog
Interview with Yao Xiao, scikit-learn Team Member
Author: Reshama Shaikh , Yao Xiao
Python Insider: Python 3.13.0 beta 4 released
Link: https://pythoninsider.blogspot.com/2024/07/python-3130-beta-4-released.html
I'm pleased to announce the release of Python 3.13 beta 4.https://www.python.org/downloads/release/python-3130b4/
This is a beta preview of Python 3.13
Python 3.13 is still in development. This rele
Link: https://pythoninsider.blogspot.com/2024/07/python-3130-beta-4-released.html
I'm pleased to announce the release of Python 3.13 beta 4.https://www.python.org/downloads/release/python-3130b4/
This is a beta preview of Python 3.13
Python 3.13 is still in development. This rele
Blogspot
Python Insider: Python 3.13.0 beta 4 released
Quansight Labs Blog: The convoluted story behind `np.top_k`
Link: https://labs.quansight.org/blog/convoluted-story-behind-topk
In this blog post, I describe my experience as a first-time contributor to NumPy and talk about the story behind `np.top_k`.
Link: https://labs.quansight.org/blog/convoluted-story-behind-topk
In this blog post, I describe my experience as a first-time contributor to NumPy and talk about the story behind `np.top_k`.
labs.quansight.org
The convoluted story behind `np.top_k`
In this blog post, I describe my experience as a first-time contributor to NumPy and talk about the story behind `np.top_k`.
PyBites: How to convert a Python script into a web app, a product others can use
Link: https://pybit.es/articles/from-python-script-to-web-app-and-product/
So, you’re a Python developer or you just use Python to make your life easier by writing utility scripts to automate repetitive tasks and boost your productivity.Such Python scripts are usually local
Link: https://pybit.es/articles/from-python-script-to-web-app-and-product/
So, you’re a Python developer or you just use Python to make your life easier by writing utility scripts to automate repetitive tasks and boost your productivity.Such Python scripts are usually local
Pybites
How To Convert A Python Script Into A Web App, A Product Others Can Use - Pybites
So, you're a Python developer or you just use Python to make your life easier by writing utility scripts to automate repetitive tasks and boost your
Real Python: Quiz: Python Strings and Character Data
Link: https://realpython.com/quizzes/python-strings-update/
This quiz will evaluate your understanding of Python’s string data type and test your knowledge about manipulating textual data with string objects. You’ll cover the basics of creating strings using l
Link: https://realpython.com/quizzes/python-strings-update/
This quiz will evaluate your understanding of Python’s string data type and test your knowledge about manipulating textual data with string objects. You’ll cover the basics of creating strings using l
Realpython
Python Strings and Character Data Quiz – Real Python
This quiz will test your understanding of Python's string data type and your knowledge about manipulating textual data with string objects. You'll cover the basics of creating strings using literals and the str() function, applying string methods, using operators…
Real Python: The Real Python Podcast – Episode #213: Constraint Programming & Exploring Python's Built-in Functions
Link: https://realpython.com/podcasts/rpp/213/
What are discrete optimization problems? How do you solve them with constraint programming in Python? Christopher Trudeau is back on the show this week, bringing another batch of PyCoder's Weekly arti
Link: https://realpython.com/podcasts/rpp/213/
What are discrete optimization problems? How do you solve them with constraint programming in Python? Christopher Trudeau is back on the show this week, bringing another batch of PyCoder's Weekly arti
Realpython
Episode #213: Constraint Programming & Exploring Python's Built-in Functions – The Real Python Podcast
What are discrete optimization problems? How do you solve them with constraint programming in Python? Christopher Trudeau is back on the show this week, bringing another batch of PyCoder's Weekly articles and projects
PyPy: Mining JIT traces for missing optimizations with Z3
Link: https://www.pypy.org/posts/2024/07/mining-jit-traces-missing-optimizations-z3.html
In my last post I've described how to use Z3 to find simple local peephole
optimization patterns
for the integer operations in PyPy's JIT. An example is int_and(x, 0) ->
0. In this post I want to scal
Link: https://www.pypy.org/posts/2024/07/mining-jit-traces-missing-optimizations-z3.html
In my last post I've described how to use Z3 to find simple local peephole
optimization patterns
for the integer operations in PyPy's JIT. An example is int_and(x, 0) ->
0. In this post I want to scal
PyPy
Mining JIT traces for missing optimizations with Z3
In my last post I've described how to use Z3 to find simple local peephole
optimization patterns
for the integer operations in PyPy's JIT. An example is int_and(x, 0) ->
0. In this post I want to scal
optimization patterns
for the integer operations in PyPy's JIT. An example is int_and(x, 0) ->
0. In this post I want to scal
Matt Layman: Activation Email Job - Building SaaS #196
Link: https://www.mattlayman.com/blog/2024/activation-email-job-building-saas-196/
In this episode, we chatted about managing dependencies and the cost of maintenance. Then we got into some feature work and began building a job that will send users an email as reminder to activate t
Link: https://www.mattlayman.com/blog/2024/activation-email-job-building-saas-196/
In this episode, we chatted about managing dependencies and the cost of maintenance. Then we got into some feature work and began building a job that will send users an email as reminder to activate t
Matt Layman
Activation Email Job - Building SaaS #196
In this episode, we chatted about managing dependencies and the cost of maintenance. Then we got into some feature work and began building a job that will send users an email as reminder to activate their account shortly before it expires.
Python Morsels: Using "else" in a comprehension
Link: https://www.pythonmorsels.com/comprehension-with-else/
While list comprehesions in Python don't support the else keyword directly, conditional expressions can be embedded within list comprehension.
Table of contents
Do list comprehensions support else
Link: https://www.pythonmorsels.com/comprehension-with-else/
While list comprehesions in Python don't support the else keyword directly, conditional expressions can be embedded within list comprehension.
Table of contents
Do list comprehensions support else
Pythonmorsels
Using "else" in a comprehension
While list comprehesions in Python don't support the else keyword directly, conditional expressions can be embedded within list comprehension.
Python Software Foundation: Announcing the 2024 PSF Board Election & Proposed Bylaw Change Results!
Link: https://pyfound.blogspot.com/2024/07/announcing-2024-psf-board-election.html
The 2024 election for the PSF Board and proposed Bylaws changes created an opportunity for conversations about the PSF's work to serve the global Python community. We appreciate community members' per
Link: https://pyfound.blogspot.com/2024/07/announcing-2024-psf-board-election.html
The 2024 election for the PSF Board and proposed Bylaws changes created an opportunity for conversations about the PSF's work to serve the global Python community. We appreciate community members' per
Python Software Foundation Blog
Announcing the 2024 PSF Board Election & Proposed Bylaw Change Results!
The 2024 election for the PSF Board and proposed Bylaws changes created an opportunity for conversations about the PSF's work to serve the g...
Python Software Foundation: PSF Board update on improvements to the PSF Grants program
Link: https://pyfound.blogspot.com/2024/07/psf-board-update-on-improvements-to-psf.html
In December 2023 we received an open letter from a coalition of organizers from the pan-African Python community asking the PSF to address concerns and frustrations around our Grants Program. The lett
Link: https://pyfound.blogspot.com/2024/07/psf-board-update-on-improvements-to-psf.html
In December 2023 we received an open letter from a coalition of organizers from the pan-African Python community asking the PSF to address concerns and frustrations around our Grants Program. The lett
Python Software Foundation Blog
PSF Board update on improvements to the PSF Grants program
In December 2023 we received an open letter from a coalition of organizers from the pan-African Python community asking the PSF to address ...
Zato Blog: LDAP and Active Directory as Python API Services
Link: https://zato.io/en/blog/ldap-active-directory.html
LDAP and Active Directory as Python API Services
2024-07-22, by Dariusz Suchojad
LDAP and Active Directory often play key a role in the management of a company's network resources yet it is not
Link: https://zato.io/en/blog/ldap-active-directory.html
LDAP and Active Directory as Python API Services
2024-07-22, by Dariusz Suchojad
LDAP and Active Directory often play key a role in the management of a company's network resources yet it is not
Seth Michael Larson: YouTube without YouTube Shorts
Link: http://sethmlarson.dev/youtube-without-youtube-shorts?date=2024-07-22
YouTube without YouTube Shorts
Link: http://sethmlarson.dev/youtube-without-youtube-shorts?date=2024-07-22
YouTube without YouTube Shorts
Seth Michael Larson
YouTube without YouTube Shorts
Back in October 2023 I wrote about how “For You” wasn't for me,
and my dislike for infinitely-scrolling algorithmically-suggested content.
In that post I mentioned that I removed YouTube from my ph...
and my dislike for infinitely-scrolling algorithmically-suggested content.
In that post I mentioned that I removed YouTube from my ph...
Real Python: Logging in Python
Link: https://realpython.com/python-logging/
Recording relevant information during the execution of your program is a good practice as a Python developer when you want to gain a better understanding of your code. This practice is called logging,
Link: https://realpython.com/python-logging/
Recording relevant information during the execution of your program is a good practice as a Python developer when you want to gain a better understanding of your code. This practice is called logging,
Realpython
Logging in Python – Real Python
If you use Python's print() function to get information about the flow of your programs, then logging is the natural next step for you. This tutorial will guide you through creating your first logs and show you ways to curate them to grow with your projects.
Talk Python to Me: #471: Learning and teaching Pandas
Link: https://talkpython.fm/episodes/show/471/learning-and-teaching-pandas
If you want to get better at something, often times the path is pretty clear. If you get better at swimming, you go to the pool and practice your strokes and put in time doing the laps. If you want to
Link: https://talkpython.fm/episodes/show/471/learning-and-teaching-pandas
If you want to get better at something, often times the path is pretty clear. If you get better at swimming, you go to the pool and practice your strokes and put in time doing the laps. If you want to
talkpython.fm
Learning and teaching Pandas
If you want to get better at something, often times the path is pretty clear. If you get better at swimming, you go to the pool and practice your strokes and put in time doing the laps. If you want to get better at mountain biking, hit the trails and work…
Peter Bengtsson: Converting Celsius to Fahrenheit round-up
Link: http://www.peterbe.com/plog/converting-celsius-to-fahrenheit-round-up
In the last couple of days, I've created variations of a simple algorithm to demonstrate how Celcius and Fahrenheit seem to relate to each other if you "mirror the number".
It wasn't supposed to be ab
Link: http://www.peterbe.com/plog/converting-celsius-to-fahrenheit-round-up
In the last couple of days, I've created variations of a simple algorithm to demonstrate how Celcius and Fahrenheit seem to relate to each other if you "mirror the number".
It wasn't supposed to be ab
Peterbe
Converting Celsius to Fahrenheit round-up - Peterbe.com
DataWars.io: Free AP Computer Science A Practice Exercises | DataWars
Link: https://www.datawars.io/articles/free-ap-computer-science-a-practice-exercises
Link: https://www.datawars.io/articles/free-ap-computer-science-a-practice-exercises
www.datawars.io
Free AP Computer Science A Practice Exercises
Find our collection of free and interactive exercises to practice before your AP Computer Science A exam
Christoph Schiessl: How to Serve a Directory of Static Files with FastAPI
Link: https://bugfactory.io/articles/how-to-serve-a-directory-of-static-files-with-fastapi/
Learn how to serve a static site using FastAPI. Perfect for locally testing statically generated websites, for instance, with `httpie`.
Link: https://bugfactory.io/articles/how-to-serve-a-directory-of-static-files-with-fastapi/
Learn how to serve a static site using FastAPI. Perfect for locally testing statically generated websites, for instance, with `httpie`.
BugFactory
How to Serve a Directory of Static Files with FastAPI
Learn how to serve a static site using FastAPI. Perfect for locally testing statically generated websites, for instance, with `httpie`.
Real Python: pandas GroupBy: Grouping Real World Data in Python
Link: https://realpython.com/courses/pandas-groupby-real-world-data/
Whether you’ve just started working with pandas and want to master one of its core capabilities, or you’re looking to fill in some gaps in your understanding about .groupby(), this course will help yo
Link: https://realpython.com/courses/pandas-groupby-real-world-data/
Whether you’ve just started working with pandas and want to master one of its core capabilities, or you’re looking to fill in some gaps in your understanding about .groupby(), this course will help yo
Realpython
pandas GroupBy: Grouping Real World Data in Python – Real Python
In this course, you'll learn how to work adeptly with the pandas GroupBy while mastering ways to manipulate, transform, and summarize data. You'll work with real-world datasets and chain GroupBy methods together to get data into an output that suits your…
Mike Driscoll: ANN: ObjectListView3 for wxPython
Link: https://www.blog.pythonlibrary.org/2024/07/23/ann-objectlistview3-for-wxpython/
ObjectListView is a third-party wxPython widget that wraps the wx.ListCtrl. I have used it for over 10 years in quite a few different GUI applications because it works much nicer than wx.ListCtrl does
Link: https://www.blog.pythonlibrary.org/2024/07/23/ann-objectlistview3-for-wxpython/
ObjectListView is a third-party wxPython widget that wraps the wx.ListCtrl. I have used it for over 10 years in quite a few different GUI applications because it works much nicer than wx.ListCtrl does
Mouse Vs Python
ANN: ObjectListView3 for wxPython - Mouse Vs Python
ObjectListView is a third-party wxPython widget that wraps the wx.ListCtrl. I have used it for over 10 years in quite a few different GUI applications