Category
Built-in
7-Day Challenge
Land Your First Data Science Job
A proven roadmap to prepare for $75K+ entry-level data roles. Perfect for Data Scientist ready to level up their career.
Build portfolios that hiring managers love
Master the Python and SQL essentials to be industry-ready
Practice with real interview questions from tech companies
Access to the $100k/y Data Scientist Cheatsheet
Fundamentals
1 min readHow to use the Try and Except statement in Python
Handle errors and exceptions in Python using 'try' and 'except' statement, with optional 'else', 'finally' blocks, use 'raise' to throw exceptions, assign exception to variable with 'as' keyword, handle multiple types of exceptions.
3/10/2023Read More
Fundamentals
1 min readHow to use default method parameters in Python
Learn how to assign default value to function parameters by using '=' in function signature, default parameters must be at end of the parameter list
3/7/2023Read More
Logging
1 min readHow to do logging in Python
Learn how to use the built-in logging module in Python to keep track of events in your program and output messages to a log file or designated logging service. #Python #Logging
2/25/2023Read More
Fundamentals
1 min readWhat does the "yield" word do in Python
In Python, the yield keyword allows functions to produce a series of values over time, rather than computing them all at once, making it efficient for large data sets or for producing a series of values that can be used in a for loop.
2/18/2023Read More
Fundamentals
5 min readHow to do statistics on a DataFrame
Learn how to perform various statistics on a Pandas DataFrame such as mean, median, mode, standard deviation, variance, minimum and maximum, sum, count and more using built-in methods like .mean(), .median(), .std(), .min(), .max(), .sum(), .count(), .describe() etc.
2/17/2023Read More
Fundamentals
2 min readHow to read an excel, csv, json file in Python
Learn how to easily read and manipulate data from excel, csv and json formats in Python using popular libraries such as pandas, openpyxl, and json
2/12/2023Read More
Library
1 min readThe simple method to install a Python library
To install a Python library such as Pandas, use pip or conda package manager by typing "pip install [library_name]" or "conda install [library_name]" and then import it in your script to start using it.
2/9/2023Read More
Fundamentals
1 min readHow to create your own library in Python
Creating a custom library in Python involves creating a new directory, adding an __init__.py file, creating modules with related functions/classes, importing and exposing desired functions/classes in __init__.py, and importing the library in other scripts.
2/9/2023Read More
Fundamentals
1 min readHow to well structure your Python scripts
A well-structured Python script uses functions, meaningful variable and function names, follows PEP8, has docstrings, and uses consistent indentation and formatting to make the code easy to understand and maintain.
2/8/2023Read More
Free Newsletter
Master Data Science in Days, Not Months 🚀
Skip the theoretical rabbit holes. Get practical data science skills delivered in bite-sized lessons – Approach used by real data scientist. Not bookworms. 📚
Weekly simple and practical lessons
Access to ready to use code examples
Skip the math, focus on results
Learn while drinking your coffee