ItsMyCode: Python List pop()
Python List pop()Β is a built-in function that removes the item at the specified index from the list and returns the removed item. If the index is not passed, the last item is popped out and removed...
View ArticleMike Driscoll: PyDev of the Week: Mirko Galimberti
This week we welcome Mirko Galimberti (@M1sl6) as our PyDev of the Week! Mirko is a core developer of Kivy, a cross-platform GUI framework for Python that targets iOS and Android, but works on Linux,...
View ArticleReal Python: How to Get the Most Out of PyCon US
Congratulations! Youβre going to PyCon US!Whether this is your first time or not, going to a conference full of people who love the same thing as you is always a fun experience. Thereβs so much more to...
View ArticleRoseHosting Blog: How to Install and Switch Python Versions on Ubuntu 20.04
This tutorial is about installing and switching between different Python versions on Ubuntu 20.04. Using multiple Python versions on your ... Read moreThe post How to Install and Switch Python Versions...
View ArticlePodcast.__init__: Cloud Native Networking For Developers With The Gloo Platform
Communication is a fundamental requirement for any program or application. As the friction involved in deploying code has gone down, the motivation for architecting your system as microservices goes...
View ArticleStack Abuse: Guide to Sets in Python
IntroductionIn Python, a set is a data structure that stores unordered items. The set items are also unindexed. Like a list, a set allows the addition and removal of elements. However, there are a few...
View ArticleStack Abuse: Lists vs Tuples in Python
IntroductionLists and tuples are two of the most commonly used data structures in Python, with dictionary being the third. Lists and tuples have many similarities:They are both sequence data types that...
View ArticleReal Python: Building a Django User Management System
If youβre building your own Django applications, you might decide to extend them with user accounts. In this video course, youβll learn how to work with Django user management and add it to your...
View ArticlePython Morsels: What are hashable objects?
Sets and dictionaries are powered by hashability. And hashable objects tend to be immutable.Table of contentsSets items must be hashableDictionary keys must be hashableHashability makes dictionaries...
View ArticlePyCoderβs Weekly: Issue #521 (April 19, 2022)
#521 β APRIL 19, 2022View in Browser Β»Build an Editor in Python and WebAssembly Step-by-step instructions on how to build a code editor in the browser using Python and WebAssembly (WASM), via Pyodide,...
View ArticleMike Driscoll: Python 101 - Intro to Testing with Python and unittest (Video)
In this tutorial, you will learn the basics of testing with Python and the built-in unittest moduleYou can also read the article that this video is based on at Mouse vs Python here: Python 3 Testing:...
View ArticleReal Python: Python 3.11 Preview: Task and Exception Groups
Python 3.11 will be released in October 2022. Even though October is still months away, you can already preview some of the upcoming features, including the new task and exception groups that Python...
View ArticleTalk Python to Me: #362: Hypermodern Python Projects
What would a modern Python project look like? Maybe it would use Poetry rather than pip directly for its package management. Perhaps its test automation would be controlled with Nox. You might automate...
View ArticlePython Software Foundation: Announcing Python Software Foundation Fellow...
The PSF is pleased to announce its first batch of PSF Fellows for 2022! Let us welcome the new PSF Fellows for Q1! The following people continue to do amazing things for the Python community:Denny...
View ArticlePython Bytes: #280 Easy terminal scripts by sourcing your Py
<p><strong>Watch the live stream:</strong></p> <a href='https://www.youtube.com/watch?v=Rw4xPX0E33o' style='font-weight: bold;'>Watch on YouTube</a><br>...
View ArticleReal Python: The Real Python Podcast β Episode #107: Type-Safe ORM With...
Are you using an Object-Relational Mapper (ORM) for your Python projects? What if it could work with SQL or No-SQL databases and be fully type-safe? This week on the show, Robert Craigie talks about...
View ArticlePyCon: Important Venue Information Update
The PyCon US 2022 staff, committees, and volunteers know that for many attending PyCon US 2022 next week the Health and Safety Guidelines and Vaccine Verification policy along with a commitment to...
View ArticleNikola: Nikola v8.2.1 is out!
On behalf of the Nikola team, I am pleased to announce the immediate availability of Nikola v8.2.1. This is a minor release with a couple new features, as well as fixes for compatibility with the...
View ArticleItsMyCode: Convert DateTime to Unix timestamp in Python
This tutorial will look at how to convert DateTime to Unix timestamp in Python and String Date to timestamp with examples.What is Unix Timestamp?Unix was initially developed between 1960 β and 1970....
View ArticleLucas Cimon: fpdf2.5.2 : SVG support and borb
fpdf2 is a simple & fast PDF creation library for Python that I have been maintaining since mid-2020.In this article, I'm going to present some of the new features that landed since my last post on...
View Article