Skip to content

Python Posts

Python Flatten List of Lists Cover Image

Python: Flatten Lists of Lists (4 Ways)

Learn how to use Python to flatten a list of lists, including using the itertools library, list comprehension, and multi-level lists of lists.

Python Remove Newline Characters from String Cover Image

Python: Remove Newline Character from String

In this post, you’ll learn how to use Python to remove newline characters from strings, including how to replace all or trailing newlines.

Python Sum of Squares Cover Image

Python Sum of Squares: 3 Different Ways

Learn how to calculate the Python sum of squares, including using a custom function, and find out what method is the most efficient!