Real Python: Python News: What's New From January 2022?
Link: https://realpython.com/python-news-january-2022/
In January 2022, the code formatter Black saw its first non-beta release and published a new stability policy. IPython, the powerful interactive Python shell, marked the release of version 8.0, its fi
Link: https://realpython.com/python-news-january-2022/
In January 2022, the code formatter Black saw its first non-beta release and published a new stability policy. IPython, the powerful interactive Python shell, marked the release of version 8.0, its fi
Realpython
Python News: What's New From January 2022 – Real Python
In January 2022, Black came out of Beta, IPython 8.0 was released, PEP 665 was rejected, and last but not least, a fifteen-year-old bug was fixed. In this article, you'll get the details on these important happenings in the world of Python.
death and gravity: Dealing with YAML with arbitrary tags in Python
Link: https://death.andgravity.com/any-yaml
... in which we use PyYAML to safely read and write YAML with any tags,
in a way that's as straightforward as interacting with built-in types.
If you're in a hurry,
you can find the code at the end.
Link: https://death.andgravity.com/any-yaml
... in which we use PyYAML to safely read and write YAML with any tags,
in a way that's as straightforward as interacting with built-in types.
If you're in a hurry,
you can find the code at the end.
death and gravity
Dealing with YAML with arbitrary tags in Python
... in which we use PyYAML to safely read and write YAML with any tags, in a way that's as straightforward as interacting with built-in types.
Python Morsels: Making the len function work on your Python objects
Link: https://www.pythonmorsels.com/topics/making-the-len-function-work-on-your-python-objects/
In Python, you can make the built-in len function work on your objects.
The len function only works on objects that have a length
The built-in len function works on some objects, but not on others.
Link: https://www.pythonmorsels.com/topics/making-the-len-function-work-on-your-python-objects/
In Python, you can make the built-in len function work on your objects.
The len function only works on objects that have a length
The built-in len function works on some objects, but not on others.
Pythonmorsels
Making the len function work on your Python objects
Want the built-in len function to work on your Python objects? Your class needs a __len__ method!
ItsMyCode: TypeError: method() takes 1 positional argument but 2 were given
Link: https://itsmycode.com/method-takes-1-positional-argument-but-2-were-given/
If you define a method inside a class, you should add self as the first argument. If you forget the self argument, then Python will raise TypeError: method() takes 1 positional argument but 2 were giv
Link: https://itsmycode.com/method-takes-1-positional-argument-but-2-were-given/
If you define a method inside a class, you should add self as the first argument. If you forget the self argument, then Python will raise TypeError: method() takes 1 positional argument but 2 were giv
ItsMyCode
TypeError: method() takes 1 positional argument but 2 were given - ItsMyCode
The TypeError: method() takes 1 positional argument but 2 were given occurs if we do not pass the "self" as an argument to all the methods in a class
Stack Abuse: Numpy Array to Tensor and Tensor to Numpy Array with PyTorch
Link: https://stackabuse.com/numpy-array-to-tensor-and-tensor-to-numpy-array-with-pytorch/
Tensors are multi-dimensional objects, and the essential data representaion block of Deep Learning frameworks such as Tensorflow and PyTorch.
A scalar has one dimension, a vector has two, and tensors
Link: https://stackabuse.com/numpy-array-to-tensor-and-tensor-to-numpy-array-with-pytorch/
Tensors are multi-dimensional objects, and the essential data representaion block of Deep Learning frameworks such as Tensorflow and PyTorch.
A scalar has one dimension, a vector has two, and tensors
Stack Abuse
Convert Numpy Array to Tensor and Tensor to Numpy Array with PyTorch
In this short guide, learn how to convert a Numpy array to a PyTorch tensor, and how to convert a PyTorch tensor to a Numpy array. Deal with both CPU and GPU tensors and avoid conversion exceptions!
Glyph Lefkowitz: A Better Pygame Mainloop
Link: https://glyph.twistedmatrix.com/2022/02/a-better-pygame-mainloop.html
I’ve written about this
before, but in that
context I was writing mainly about frame-rate independence, and only gave a
brief mention of vertical sync; the title also mentioned Twisted, and upon
re-re
Link: https://glyph.twistedmatrix.com/2022/02/a-better-pygame-mainloop.html
I’ve written about this
before, but in that
context I was writing mainly about frame-rate independence, and only gave a
brief mention of vertical sync; the title also mentioned Twisted, and upon
re-re
Twistedmatrix
A Better Pygame Mainloop
Fix your mainloop for smoother gameplay that takes less battery power.
ItsMyCode: AttributeError: Can only use .str accessor with string values
Link: https://itsmycode.com/can-only-use-str-accessor-with-string-values/
The AttributeError: Can only use .str accessor with string values, which use np.object_ dtype in pandas occurs if you try to replace the values of string column, but in reality, it is of a different t
Link: https://itsmycode.com/can-only-use-str-accessor-with-string-values/
The AttributeError: Can only use .str accessor with string values, which use np.object_ dtype in pandas occurs if you try to replace the values of string column, but in reality, it is of a different t
ItsMyCode
AttributeError: Can only use .str accessor with string values - ItsMyCode
The AttributeError: Can only use .str accessor with string values occurs if you try to replace the values of columns which is not of type string
TestDriven.io: Working with Static and Media Files in Django
Link: https://testdriven.io/blog/django-static-files/
This article looks at how to work with static and media files in a Django project, locally and in production.
Link: https://testdriven.io/blog/django-static-files/
This article looks at how to work with static and media files in a Django project, locally and in production.
testdriven.io
Working with Static and Media Files in Django
This article looks at how to work with static and media files in a Django project, locally and in production.
Real Python: Defining Python Functions With Optional Arguments
Link: https://realpython.com/courses/defining-python-functions-with-optional-arguments/
Defining your own functions is an essential skill for writing clean and effective code. In this tutorial, you’ll explore the techniques you have available for defining Python functions that take optio
Link: https://realpython.com/courses/defining-python-functions-with-optional-arguments/
Defining your own functions is an essential skill for writing clean and effective code. In this tutorial, you’ll explore the techniques you have available for defining Python functions that take optio
Realpython
Defining Python Functions With Optional Arguments – Real Python
In this video course, you'll learn about Python optional arguments and how to define functions with default values. You'll also learn how to create functions that accept any number of arguments using args and kwargs.
Lucas Cimon: Useful short Python decorator to convert generators into lists
Link: https://chezsoi.org/lucas/blog/useful-short-python-decorator-to-convert-generators-into-lists.html
Python generators are awesome. Why ?
their syntax is simple an concise
they lazily generate values and hence are very memory efficient
bonus point: since Python 3 you can chain them with yield from
Link: https://chezsoi.org/lucas/blog/useful-short-python-decorator-to-convert-generators-into-lists.html
Python generators are awesome. Why ?
their syntax is simple an concise
they lazily generate values and hence are very memory efficient
bonus point: since Python 3 you can chain them with yield from
Ludochaordic
Useful short python decorator to convert generators into lists
Python generators are awesome. Why ? their syntax is simple an concise they lazily generate values and hence are very memory efficient bonus point: since Python 3 you can chain them with yield from Their drawback ? They can be iterated only once, and they…
Python for Beginners: Count Digits Of An Integer in Python
Link: https://www.pythonforbeginners.com/basics/count-digits-of-an-integer-in-python
In python, integer data type is used to represent positive and negative integers. In this article, we will discuss a program to count digits of an integer in python.
How to Count Digits of an Integer
Link: https://www.pythonforbeginners.com/basics/count-digits-of-an-integer-in-python
In python, integer data type is used to represent positive and negative integers. In this article, we will discuss a program to count digits of an integer in python.
How to Count Digits of an Integer
PythonForBeginners.com
Count Digits Of An Integer in Python - PythonForBeginners.com
Count Digits Of An Integer in Python will help you improve your python skills with easy to follow examples and tutorials. Click here to view code examples.
PyCoder’s Weekly: Issue #511 (Feb. 8, 2022)
Link: https://pycoders.com/issues/511
#511 – FEBRUARY 8, 2022 View in Browser » Defining Python Functions With Optional Arguments Learn about Python optional arguments and how to define functions with default values. You’ll also see
Link: https://pycoders.com/issues/511
#511 – FEBRUARY 8, 2022 View in Browser » Defining Python Functions With Optional Arguments Learn about Python optional arguments and how to define functions with default values. You’ll also see
Pycoders
PyCoder’s Weekly | Issue #511
Issue #511 of the PyCoder’s Weekly newsletter, published Feb. 8, 2022.
Read the Docs: Read the Docs newsletter - February 2022
Link: https://blog.readthedocs.com/newsletter-february-2022/
Welcome to the latest edition of our monthly newsletter, where we
share the most relevant updates around Read the Docs,
offer a summary of new features we shipped
during the previous month,
and share
Link: https://blog.readthedocs.com/newsletter-february-2022/
Welcome to the latest edition of our monthly newsletter, where we
share the most relevant updates around Read the Docs,
offer a summary of new features we shipped
during the previous month,
and share
Andre Roberge: Friendly-traceback and IPython: update
Link: https://aroberge.blogspot.com/2022/02/friendly-traceback-and-ipython-update.html
In my previous post, I mentioned that, unlike IPython, friendly/friendly-traceback included values of relevant objects in a traceback. As I wrote in the update, Alex Hall pointed out that one could g
Link: https://aroberge.blogspot.com/2022/02/friendly-traceback-and-ipython-update.html
In my previous post, I mentioned that, unlike IPython, friendly/friendly-traceback included values of relevant objects in a traceback. As I wrote in the update, Alex Hall pointed out that one could g
Blogspot
Friendly-traceback and IPython: update
In my previous post , I mentioned that, unlike IPython, friendly/friendly-traceback included values of relevant objects in a traceback. As ...
Talk Python to Me: #352: Running Python in Production
Link: https://talkpython.fm/episodes/show/352/running-python-in-production
Do we talk about running Python in production enough? I can tell you that the Talk Python infrastructure (courses, podcasts, APIs, etc.) get a fair amount of traffic, but they look nothing like what G
Link: https://talkpython.fm/episodes/show/352/running-python-in-production
Do we talk about running Python in production enough? I can tell you that the Talk Python infrastructure (courses, podcasts, APIs, etc.) get a fair amount of traffic, but they look nothing like what G
talkpython.fm
Running Python in Production
Do we talk about running Python in production enough? I can tell you that the Talk Python infrastructure (courses, podcasts, APIs, etc.) get a fair amount of traffic, but they look nothing like what Google, or Instagram, or insert [BIG TECH NAME] here's deployments…
Test and Code: 179: Exploratory Testing
Link: https://testandcode.com/179
Exploratory testing is absolutely an essential part of a testing strategy.
This episode discusses what exploratory testing is, its benefits, and how it fits within a framework of relying on automated
Link: https://testandcode.com/179
Exploratory testing is absolutely an essential part of a testing strategy.
This episode discusses what exploratory testing is, its benefits, and how it fits within a framework of relying on automated
Test & Code in Python
Test & Code in Python 179: Exploratory Testing
Exploratory testing is absolutely an essential part of a testing strategy.
This episode discusses what exploratory testing is, its benefits, and how it fits within a framework of relying on automated tests for most of our testing.
This episode discusses what exploratory testing is, its benefits, and how it fits within a framework of relying on automated tests for most of our testing.
Real Python: Python's all(): Check Your Iterables for Truthiness
Link: https://realpython.com/python-all/
When programming, you’ll often need to check if all the items in an iterable are truthy. Coding this functionality repeatedly can be annoying and inefficient. Luckily, Python provides the built-in all
Link: https://realpython.com/python-all/
When programming, you’ll often need to check if all the items in an iterable are truthy. Coding this functionality repeatedly can be annoying and inefficient. Luckily, Python provides the built-in all
Realpython
Python's all(): Check Your Iterables for Truthiness – Real Python
In this step-by-step tutorial, you'll learn how to use Python's all() function to check if all the items in an iterable are truthy. You'll also code various examples that showcase a few interesting use cases of all() and highlight how you can use this function…
Python for Beginners: Remove Commas From String in Python
Link: https://www.pythonforbeginners.com/strings/remove-commas-from-string-in-python
In python, we use strings to analyze text data. We need to preprocess the text data before analysis. Sometimes, we might need to remove characters like commas or apostrophes from the text. In this ar
Link: https://www.pythonforbeginners.com/strings/remove-commas-from-string-in-python
In python, we use strings to analyze text data. We need to preprocess the text data before analysis. Sometimes, we might need to remove characters like commas or apostrophes from the text. In this ar
PythonForBeginners.com
Remove Commas From String in Python - PythonForBeginners.com
Remove Commas From String in Python will help you improve your python skills with easy to follow examples and tutorials. Click here to view code examples.
Twisted Matrix Labs: Twisted 22.1.0 Final Release Announcement
Link: https://labs.twistedmatrix.com/2022/02/twisted-2210-final-release-announcement.html
HiOn behalf of the Twisted contributors I announce the final release of Twisted 22.1.0This is mainly a bugfix release.The main bug is:CVE-2022-21712 / GHSA-92x2-jw7w-xvvx twisted.web.client.RedirectAg
Link: https://labs.twistedmatrix.com/2022/02/twisted-2210-final-release-announcement.html
HiOn behalf of the Twisted contributors I announce the final release of Twisted 22.1.0This is mainly a bugfix release.The main bug is:CVE-2022-21712 / GHSA-92x2-jw7w-xvvx twisted.web.client.RedirectAg
Twistedmatrix
Twisted 22.1.0 Final Release Announcement
Hi On behalf of the Twisted contributors I announce the final release of Twisted 22.1.0 This is mainly a bugfix release. The main bug is: CV...
PyCharm: Webinar “Beginner Concurrency with asyncio” with Jeremy Schulman
Link: https://blog.jetbrains.com/pycharm/2022/02/webinar-beginner-concurrency-with-asyncio-with-jeremy-schulman/
Interested in learning async Python using a real-world example? Concurrency can be hard. Getting started with asyncio may feel intimidating if you are starting off by reading the language reference do
Link: https://blog.jetbrains.com/pycharm/2022/02/webinar-beginner-concurrency-with-asyncio-with-jeremy-schulman/
Interested in learning async Python using a real-world example? Concurrency can be hard. Getting started with asyncio may feel intimidating if you are starting off by reading the language reference do
The JetBrains Blog
Webinar "Beginner Concurrency with asyncio" with Jeremy Schulman | The PyCharm Blog
Interested in learning async Python using a real-world example? Concurrency can be hard. Getting started with asyncio may feel intimidating if you are starting off by reading the language reference do