Shannon -jj Behrens: Python: My Favorite Python Tricks for LeetCode Questions
Link: http://www.jjinux.com/2022/08/python-my-favorite-python-tricks-for.html
I've been spending a lot of time practicing on LeetCode recently, so I thought I'd share some of my favorite intermediate-level Python tricks. I'll also cover some newer features of Python you may not
Link: http://www.jjinux.com/2022/08/python-my-favorite-python-tricks-for.html
I've been spending a lot of time practicing on LeetCode recently, so I thought I'd share some of my favorite intermediate-level Python tricks. I'll also cover some newer features of Python you may not
Jjinux
Python: My Favorite Python Tricks for LeetCode Questions
I've been spending a lot of time practicing on LeetCode recently, so I thought I'd share some of my favorite intermediate-level Python trick...
Stack Abuse: The Python Magic Methods: __str__ vs __repr__
Link: https://stackabuse.com/the-python-magic-methods-str-vs-repr/
Introduction
Python, being a high-level, interpreted language, is known for its easy readability with great design principles. However, when you delve deeper into Python, some things may seem complex
Link: https://stackabuse.com/the-python-magic-methods-str-vs-repr/
Introduction
Python, being a high-level, interpreted language, is known for its easy readability with great design principles. However, when you delve deeper into Python, some things may seem complex
Stack Abuse
The Python Magic Methods: __str__ vs __repr__
Python, being a high-level, interpreted language, is known for its easy readability with great design principles. However, when you delve deeper into Python, s...
Stack Abuse: Writing a Pandas DataFrame to a CSV File in Python
Link: https://stackabuse.com/writing-a-pandas-dataframe-to-a-csv-file-in-python/
Introduction
Working with data is a big part of any data analysis project. In Python, the Pandas library is a powerful tool that provides flexible and efficient data structures to make the process of
Link: https://stackabuse.com/writing-a-pandas-dataframe-to-a-csv-file-in-python/
Introduction
Working with data is a big part of any data analysis project. In Python, the Pandas library is a powerful tool that provides flexible and efficient data structures to make the process of
Stack Abuse
Writing a Pandas DataFrame to a CSV File in Python
Working with data is a big part of any data analysis project. In Python, the Pandas library is a powerful tool that provides flexible and efficient data struct...
Ned Batchelder: Hammerspoon
Link: https://nedbatchelder.com/blog/202308/hammerspoon.html
For a long time now
I’ve displayed a small textual info box in the otherwise unused upper-left
corner of my mac screen. It was originally based on GeekTool, but a new laptop
got me to re-think it, an
Link: https://nedbatchelder.com/blog/202308/hammerspoon.html
For a long time now
I’ve displayed a small textual info box in the otherwise unused upper-left
corner of my mac screen. It was originally based on GeekTool, but a new laptop
got me to re-think it, an
Nedbatchelder
Hammerspoon
For <a href="//nedbatchelder.com/blog/201704/textmode_menu_bar_indicators.html">a long time now</a> I’ve displayed a small textual info box in the otherwise unused upper-left corner of my mac screen. It was originally based on GeekTool, but a new laptop got…
Brett Cannon: Why I put in some effort to lower my carbon footprint
Link: https://snarky.ca/why-i-put-in-some-effort-to-lower-my-carbon-footprint/
I was talking with someone about how Andrea and I have been consciously taking less flights since the pandemic started in order to lower our carbon footprint (Take the Jump suggests a flight under 150
Link: https://snarky.ca/why-i-put-in-some-effort-to-lower-my-carbon-footprint/
I was talking with someone about how Andrea and I have been consciously taking less flights since the pandemic started in order to lower our carbon footprint (Take the Jump suggests a flight under 150
Tall, Snarky Canadian
Why I put in some effort to lower my carbon footprint
I was talking with someone about how Andrea and I have been consciously taking less flights since the pandemic started in order to lower our carbon footprint (Take the Jump suggests a flight under 1500km every 3 years, longer than that every 8 years; heard…
PyCharm: PyCharm 2023.2.1 Is Out!
Link: https://blog.jetbrains.com/pycharm/2023/08/2023-2-1/
PyCharm 2023.2.1, the first bug-fix update for PyCharm 2023.2, is now available!
You can update to v2023.2.1 by using the Toolbox App, installing it right from the IDE, or downloading it from our webs
Link: https://blog.jetbrains.com/pycharm/2023/08/2023-2-1/
PyCharm 2023.2.1, the first bug-fix update for PyCharm 2023.2, is now available!
You can update to v2023.2.1 by using the Toolbox App, installing it right from the IDE, or downloading it from our webs
The JetBrains Blog
PyCharm 2023.2.1 Is Out! | The PyCharm Blog
PyCharm 2023.2.1, the first bug-fix update for PyCharm 2023.2, is now available! You can update to v2023.2.1 by using the Toolbox App, installing it right from the IDE, or downloading it from our w
Real Python: How to Iterate Through a Dictionary in Python
Link: https://realpython.com/iterate-through-dictionary-python/
Dictionaries are one of the most important and useful built-in data structures in Python. They’re everywhere and are a fundamental part of the language itself. In your code, you’ll use dictionaries to
Link: https://realpython.com/iterate-through-dictionary-python/
Dictionaries are one of the most important and useful built-in data structures in Python. They’re everywhere and are a fundamental part of the language itself. In your code, you’ll use dictionaries to
Realpython
How to Iterate Through a Dictionary in Python – Real Python
In this tutorial, you'll take a deep dive into how to iterate through a dictionary in Python. Dictionaries are a fundamental data type in Python, and you can solve various programming problems by iterating through them.
death and gravity: reader 3.9 released
Link: https://death.andgravity.com/reader-3-9
Hi there!
I'm happy to announce version 3.9 of reader, a Python feed reader library.
What's new? #
Here are the highlights since reader 3.7.
Better handling of unexpected update errors #
Unexpected ex
Link: https://death.andgravity.com/reader-3-9
Hi there!
I'm happy to announce version 3.9 of reader, a Python feed reader library.
What's new? #
Here are the highlights since reader 3.7.
Better handling of unexpected update errors #
Unexpected ex
Brian Okken: pytest Course - Ch3 pytest Fixtures is up
Link: https://pythontest.com/posts/2023/2023-pytest-course-ch3-fixtures/
Just a quick note that “Chapter 3, pytest Fixtures” is now available in the pytest course . Also, the 20% discount is active until the end of August.
Link: https://pythontest.com/posts/2023/2023-pytest-course-ch3-fixtures/
Just a quick note that “Chapter 3, pytest Fixtures” is now available in the pytest course . Also, the 20% discount is active until the end of August.
Pythontest
pytest Course - Ch3 pytest Fixtures is up
Just a quick note that “Chapter 3, pytest Fixtures” is now available in the pytest course . Also, the 20% discount is active until the end of August.
Stack Abuse: Flush the Output of the print() Function in Python
Link: https://stackabuse.com/flush-the-output-of-the-print-function-in-python/
Introduction
In Python, the print function is a fundamental tool for outputting data to the console (and for many of us, our primary debugging tool). But, as you may have run into, sometimes the outpu
Link: https://stackabuse.com/flush-the-output-of-the-print-function-in-python/
Introduction
In Python, the print function is a fundamental tool for outputting data to the console (and for many of us, our primary debugging tool). But, as you may have run into, sometimes the outpu
Stack Abuse: Reading from stdin in Python
Link: https://stackabuse.com/reading-from-stdin-in-python/
Introduction
In most programming languages, data can be read from various sources, like files, databases, or user input. However, one of the most common forms of input is the standard input, or stdin.
Link: https://stackabuse.com/reading-from-stdin-in-python/
Introduction
In most programming languages, data can be read from various sources, like files, databases, or user input. However, one of the most common forms of input is the standard input, or stdin.
Stack Abuse
Reading from stdin in Python
In most programming languages, data can be read from various sources, like files, databases, or user input. However, one of the most common forms of input is t...
Stack Abuse: Appending Strings in Python
Link: https://stackabuse.com/appending-strings-in-python/
Introduction
In Python, strings are a sequence of characters and are one of the most used data types. There are lots of scenarios (taking user input, reading data from files, etc) where you'll need to
Link: https://stackabuse.com/appending-strings-in-python/
Introduction
In Python, strings are a sequence of characters and are one of the most used data types. There are lots of scenarios (taking user input, reading data from files, etc) where you'll need to
Real Python: Create a Python Wordle Clone With Rich
Link: https://realpython.com/courses/python-wordle-clone/
In this video course, you’ll build your own Wordle clone for the terminal. Since Josh Wardle launched Wordle in October 2021, millions of people have played it. While you can play the original game on
Link: https://realpython.com/courses/python-wordle-clone/
In this video course, you’ll build your own Wordle clone for the terminal. Since Josh Wardle launched Wordle in October 2021, millions of people have played it. While you can play the original game on
Realpython
Create a Python Wordle Clone With Rich – Real Python
In this step-by-step project, you'll build your own Wordle clone with Python. Your game will run in the terminal, and you'll use Rich to ensure your word-guessing app looks good. Learn how to build a command-line application from scratch and then challenge…
Stack Abuse: Hidden Features of Python
Link: https://stackabuse.com/hidden-features-of-python/
Introduction
Python is a powerful programming language that's easy to learn and fun to play with. But beyond the basics, there are plenty of hidden features and tricks that can help you write more eff
Link: https://stackabuse.com/hidden-features-of-python/
Introduction
Python is a powerful programming language that's easy to learn and fun to play with. But beyond the basics, there are plenty of hidden features and tricks that can help you write more eff
Stack Abuse
Hidden Features of Python
Python is a powerful programming language that's easy to learn and fun to play with. But beyond the basics, there are plenty of hidden features and tricks that...
PyCoder’s Weekly: Issue #592 (Aug. 29, 2023)
Link: https://pycoders.com/issues/592
#592 – AUGUST 29, 2023 View in Browser » Asyncio, Twisted, Tornado, Gevent Walk Into a Bar… A good introduction to I/O bound concurrency in Python and the libraries used to achieve it. Has a nic
Link: https://pycoders.com/issues/592
#592 – AUGUST 29, 2023 View in Browser » Asyncio, Twisted, Tornado, Gevent Walk Into a Bar… A good introduction to I/O bound concurrency in Python and the libraries used to achieve it. Has a nic
Pycoders
PyCoder’s Weekly | Issue #592
Issue #592 of the PyCoder’s Weekly newsletter, published Aug. 29, 2023.
Python Bytes: #350 You've Got The Stamina For This Episode
Link: https://pythonbytes.fm/episodes/show/350/youve-got-the-stamina-for-this-episode
<strong>Topics covered in this episode:</strong><br>
<ul>
<li><a href="https://pybit.es/articles/make-each-line-count-keeping-things-simple-in-python"><strong>Make Each Line Count, Keeping Things Si
Link: https://pythonbytes.fm/episodes/show/350/youve-got-the-stamina-for-this-episode
<strong>Topics covered in this episode:</strong><br>
<ul>
<li><a href="https://pybit.es/articles/make-each-line-count-keeping-things-simple-in-python"><strong>Make Each Line Count, Keeping Things Si
pythonbytes.fm
You've Got The Stamina For This Episode
News and announcements from the Python community for the week of Aug 29th, 2023
Python Software Foundation: The Python Software Foundation has been authorized by the CVE Program as a CVE Numbering Authority (CNA)
Link: https://pyfound.blogspot.com/2023/08/psf-authorized-as-cna.html
When a vulnerability is disclosed in software you're depending on, the last thing you want is for the remediation process to be confusing or ad-hoc. Towards the goal of a more secure and safe Python e
Link: https://pyfound.blogspot.com/2023/08/psf-authorized-as-cna.html
When a vulnerability is disclosed in software you're depending on, the last thing you want is for the remediation process to be confusing or ad-hoc. Towards the goal of a more secure and safe Python e
Python Software Foundation Blog
The Python Software Foundation has been authorized by the CVE Program as a CVE Numbering Authority (CNA)
When a vulnerability is disclosed in software you're depending on, the last thing you want is for the remediation process to be confusing or...
Glyph Lefkowitz: Get Your Mac Python From Python.org
Link: https://blog.glyph.im/2023/08/get-your-mac-python-from-python-dot-org.html
One of the most unfortunate things about learning Python is that there are so
many different ways to get it installed, and you need to choose one before you
even begin. The differences can also be sub
Link: https://blog.glyph.im/2023/08/get-your-mac-python-from-python-dot-org.html
One of the most unfortunate things about learning Python is that there are so
many different ways to get it installed, and you need to choose one before you
even begin. The differences can also be sub
blog.glyph.im
Get Your Mac Python From Python.org
There are many ways to get Python installed on macOS, but for most people the version that you download from Python.org is best.
Talk Python to Me: #428: Django Trends in 2023
Link: https://talkpython.fm/episodes/show/428/django-trends-in-2023
Have you heard of Django? It's this little web framework that, well, kicked off much of Python's significance in the web space back in 2005. And that makes Django officially an adult. That's right, Dj
Link: https://talkpython.fm/episodes/show/428/django-trends-in-2023
Have you heard of Django? It's this little web framework that, well, kicked off much of Python's significance in the web space back in 2005. And that makes Django officially an adult. That's right, Dj
talkpython.fm
Django Trends in 2023
Have you heard of Django? It's this little web framework that, well, kicked off much of Python's significance in the web space back in 2005. And that makes Django officially an adult. That's right, Django is now 18. And Django continues to lead the way on…
Python People: Naomi Ceder
Link: https://pythonpeople.fm/episodes/naomi-ceder
Naomi is an elected fellow of the PSF, and has served as chair of its board of directors. Topics:- Building replacement leadership for every endeavor you start- What the PSF board does- Keeping Python
Link: https://pythonpeople.fm/episodes/naomi-ceder
Naomi is an elected fellow of the PSF, and has served as chair of its board of directors. Topics:- Building replacement leadership for every endeavor you start- What the PSF board does- Keeping Python
Python People
Python People | Naomi Ceder
The Python community is awesome because of the people. Python People is a weekly podcast about getting to know the people who help make the Python community great.
It's less about the tech, and more about the people.
It's less about the tech, and more about the people.
Stack Abuse: Check if an Object has an Attribute in Python
Link: https://stackabuse.com/check-if-an-object-has-an-attribute-in-python/
Introduction
In Python, everything is an object, and each object has attributes. These attributes can be methods, variables, data types, etc. But how do we know what attribute an object has?
In this B
Link: https://stackabuse.com/check-if-an-object-has-an-attribute-in-python/
Introduction
In Python, everything is an object, and each object has attributes. These attributes can be methods, variables, data types, etc. But how do we know what attribute an object has?
In this B