Subscribe via RSS
  Looking for VBA Tutorials?

Understanding Python if __name__ == '__main__' statements

Jan 27, 2021

Today, we'll explain Python's if __name__ == '__main__' statement, which is used to check whether a Python file was run directly or imported by another file.

3 Ways to Calculate Python Execution Time

Jan 15, 2021

This article shows you three ways to calculate the execution time of a Python script using the default time module, the timeit module, and the %%timeit command.

Ultimate VBA Training Bundle

$120.00 $57.00

Want to learn more programming languages? We've combined each of our comprehensive VBA reference guides into a single bundle with over 200 tips and macros covering the 125 most important topics in VBA.

Multithreading in Python: Running Functions in Parallel

Jan 8, 2021

This tutorial shows how to implement multithreading in Python. Multithreading lets you run functions in parallel, which we'll demonstrate with several examples.

Python unittest Examples for Testing Python Code

Dec 29, 2020

The Python unittest module is used to perform unit testing in Python. We'll explain unit testing and show examples to help you get started with the unittest module.

How to Extend Functions with Python Decorators

Dec 22, 2020

Python decorators let you extend the behavior of a function in Python without explicitly modifying the original function. Let's show you how to build your own.

Thought about learning VBA?

$120.00 $57.00

We created a suite of 6 VBA cheat sheets with over 200 tips showing you everything you need to know to start making power Excel applications. Take a look!

Python Machine Learning for Spam Email Detection

Dec 11, 2020

This tutorial shows you how to create a spam email detector based on machine learning techniques using Python's scikit-learn library for machine learning.

Read Gmail Emails With Python

Dec 4, 2020

This tutorial teaches you how to access your Gmail account through Python and even read emails in your inbox using Python's imap_tools library.

Sending Emails through Gmail with Python

Nov 19, 2020

Sending an email through Gmail with Python is easy. Simply reference the proper Gmail SMTP server and configure your Python script using the smtplib library.

Zipping and Unzipping Files and Folders with Python

Nov 13, 2020

Learn how to zip and unzip files and folders in Python using zipfile and shutil. This tutorial includes examples to zip individual files and entire directories.

14 Examples To Help You Understand Python List Slicing

Oct 30, 2020

This tutorial explains what Python list slicing is and how to create subsets of one-dimensional and two dimensional lists in Python using list slicing.

subscribe via RSS