Four Ways to Print Variables in Strings Learn four different ways of including variables in your strings as well as my own preferred method.
Python List Comprehension By Example Let’s go through four increasingly complex examples of list comprehension so you can learn by example.
Code Cards: How to Check the Price of Bitcoin with Requests Learn how to interact with APIs and check the price of the world’s most popular cryptocurrency!
Code Cards: Use Pandas to Print a Column from a CSV File Start learning Pandas with this quick Python tutorial.
Code Cards: How to Sort a List of Dictionaries by Term Wrangle your data with this quick and easy function to sort a list of dictionaries by the value of a specified term.
Code Cards: How to Download an Image in Python Learn to easily download images in your Python scripts with this tutorial.
Code Cards: How to Normalize a Dictionary Normalize any dictionary to a list of two-term dictionaries, useful for preparing to enter information into a database
Code Cards: How To Upper Case Dictionary Keys in Python Standardize the format of your dictionary keys with this simple algorithm
How to Extract a Single Term from a List of Dictionaries Learn how to loop through a list dictionaries and extract a data point each time
Code Cards: How to Remove Duplicate Dictionaries in a List Get rid of duplicate dictionaries using this simple function