Category
Technologies
Python Tutorial
Keep up to date with the latest news, techniques, and resources for Python programming. Our tutorials are full of practical walk throughs & use cases you can use to upskill.
Other technologies:
Training 2 or more people?Try DataCamp for Business
Pandas Resample With resample() and asfreq()
This tutorial explores time series resampling in pandas, covering both upsampling and downsampling techniques using methods like .asfreq() and .resample().
Javier Canales Luna
June 3, 2024
Python timedelta: Working With Time Intervals in Python
In Python, timedelta is a data type within the datetime module used to represent durations or differences between two points in time.
Stephen Gruppetta
June 2, 2024
Fine-Tuning Llama 3 and Using It Locally: A Step-by-Step Guide
We'll fine-tune Llama 3 on a dataset of patient-doctor conversations, creating a model tailored for medical dialogue. After merging, converting, and quantizing the model, it will be ready for private local use via the Jan application.
Abid Ali Awan
May 30, 2024
Implementing the Dijkstra Algorithm in Python: A Step-by-Step Tutorial
Dijkstra's algorithm helps find the shortest route between two points in a network, like finding the quickest path on a map, by checking and updating distances step-by-step.
Bex Tuychiev
May 28, 2024
Snowflake Arctic Tutorial: Getting Started With Snowflake's LLM
Snowflake Arctic is a family of enterprise-grade language models designed to simplify the integration and deployment of AI within the Snowflake Data Cloud.
Zoumana Keita
May 27, 2024
Gemini 1.5 Pro API Tutorial: Getting Started With Google's LLM
To connect to the Gemini 1.5 Pro API, obtain your API key from Google AI for Developers, install the necessary Python libraries, and send requests and receive responses from the Gemini 1.5 Pro model.
Natasha Al-Khatib
May 27, 2024
Python Logical Operators: A Hands-on Introduction
Python offers three logical operators: and, or, and not. These operators, also known as Boolean operators, evaluate multiple conditions and determine an expression's overall truth value.
Stephen Gruppetta
May 23, 2024
How to Use GitHub Copilot: Use Cases and Best Practices
Explore how GitHub Copilot works with Visual Studio Code. Learn about its features, pricing, and practical applications for students and developers.
Eugenia Anello
May 23, 2024
How to Use the assert Statement in Python
Implementing the assert statement in Python is straightforward: We use assert to test conditions and display a message if the condition is false.
Amberle McKee
May 23, 2024
A Comprehensive Guide to Using pathlib in Python For File System Manipulation
Discover advantages of Python pathlib over the os module by exploring path objects, path components, and common path operations for file system interaction.
Bex Tuychiev
May 22, 2024
GPT-4o API Tutorial: Getting Started with OpenAI's API
To connect through the GPT-4o API, obtain your API key from OpenAI, install the OpenAI Python library, and use it to send requests and receive responses from the GPT-4o models.
Ryan Ong
July 9, 2025
Batch Normalization: Theory and TensorFlow Implementation
Batch normalization standardizes mini-batch inputs to stabilize and speed up neural network training.
Rajesh Kumar
May 20, 2024