Explain Codes LogoExplain Codes Logo

Python

Python unittest - opposite of assertRaises?

python
unittest
assertions
testing

Python type hinting without cyclic imports

python
type-hinting
cyclic-imports
best-practices

Python "SyntaxError: Non-ASCII character '\xe2' in file"

python
utf-8
encoding-declaration
unicode

Python subprocess/Popen with a modified environment

python
subprocess
environment-variables
process-management

Python string.join(list) with an array of objects

python
object-transformation
string-methods
best-practices

Python Requests - No connection adapters

python
requests-library
url-verification
error-handling

Python None comparison: should I use "is" or ==?

python
singleton
best-practices
functions

Python list vs. array – when to use?

python
data-structures
performance-optimization
memory-management

Python list by value not by reference

python
deep-copy
list-comprehension
mutable-objects

Python import csv to list

python
csv-parser
pandas-dataframe
data-visualization

Python Image Library fails with message "decoder JPEG not available" - PIL

python
image-library
pillow
jpeg-decoding

Python idiom to return first item or None

python
prompt-engineering
best-practices
functions

Pythonic way to combine for-loop and if-statement

python
comprehensions
generator-expressions
functional-programming

Python - Get path of root project structure

python
pathlib
project-organization
best-practices

Python function global variables?

python
best-practices
global-variables
pythonic-way

Python: finding an element in a list

python
list-comprehension
numpy
bisect

Python - Extracting and Saving Video Frames

python
video-processing
opencv
frame-extraction

Python date string to date object

python
dateutil
datetime
date-string

Python date of the previous month

python
date-manipulation
datetime
dateutil

Python - Count elements in list

python
counting
list
performance