Lately, I've been having fun writing Python lists (pun intended). As a result, here are some the coolest Python programming language features.
Tag: Python
How to Add an Item to a List in Python: Append, Slice Assignment, and More
Whether or not you know how to add an item to a list in Python, you'll want to read this article just to learn about slice assignment. Trust me.
How to Check if a String Contains a Substring in Python: In, Index, and More
One concept that threw me for a loop when I first picked up Python was checking if a string contains a substring. After all, in my first language, Java, the task involved calling a method like...
How to Perform a Reverse Dictionary Lookup in Python: Generator Expressions and More
When it comes to dictionaries, looking up a value by key is easy, but what about the reverse? Today, we'll perform a reverse dictionary lookup in Python.
Everything you regularly Google just found its place in this list. Say hello to a growing list of Python code snippets for everyday problems.
How to Performance Test Python Code: timeit, cProfile, and More
Have you ever wondered how you can performance test you Python code? Luckily, I've compiled a short list of options which include timeit and cProfile.
