Duck typing in Python is a term used to illustrate that code will execute an action based on the types of built-in objects being processed. Here’s what to know.
Pascal case and camel case are two different casing styles used in programming for naming variables, class and type names. Learn the differences and other casing styles.
Dependency injection is a technique in which you make the interactions between objects as minimal as possible through specific dependencies. Here’s what to know.
You can time Python functions to measure how long it takes for your Python code to run or evaluate the performance of different approaches using time.perf)counter(), time.time() and more. Here’s how.
Seaborn Pairplot is a Python data visualization library that allows you to plot pairwise relationships between variables within a data set. Here’s how to use it.
JSON web token (JWT) is an open standard used to safely share encrypted information between a client and a server. Learn how to decode JWT using Python.