Explain Codes LogoExplain Codes Logo

Python

Fastest way to check if a value exists in a list

python
performance
binary-search
sets

How to read a file line-by-line into a list?

python
file-io
context-managers
memory-efficiency

How do you get the logical xor of two variables in Python?

python
xor
boolean
functions

How to check if the string is empty?

python
empty-string
whitespace
truthiness

Meaning of @classmethod and @staticmethod for beginner

python
classmethod
staticmethod
decorators

Transpose/unzip Function (inverse of zip)?

python
transpose
zip
data-manipulation

How do I connect to a MySQL Database in Python?

python
mysql
orms
database-connection

How can I randomly select an item from a list?

python
random-selection
secrets-module
list-manipulation

What's the best practice using a settings file in Python?

python
best-practices
settings
environment-variables

Why is __init__() always called after __new__()?

python
design-patterns
singleton
immutable-types

How do I parse an ISO 8601-formatted date?

python
date-parsing
datetime
error-handling

How can I add new keys to a dictionary?

python
dictionary
update
key-management

Pandas read in table without headers

python
pandas
dataframe
csv

Writing a list to a file with Python, with newlines

python
file-handling
context-managers
json

How to comment out a block of code in Python

python
commenting
best-practices
ide-shortcuts

How do I check file size in Python?

python
file-size
pathlib
file-handling

How to take column-slices of dataframe in pandas

python
pandas
dataframe
slicing

Pythonw.exe or python.exe?

python
python-gui
error-handling
logging

How can the Euclidean distance be calculated with NumPy?

python
euclidean-distance
numpy
vectorization

How to count the frequency of the elements in an unordered list?

python
collections
counter
groupby