Skip to main content
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:
AI AgentsArtificial IntelligenceAWSAzureBusiness IntelligenceChatGPTDatabricksdbtDockerExcelGenerative AIGitGoogle Cloud PlatformHugging FaceJavaJuliaKafkaKubernetesLarge Language ModelsMongoDBMySQLNoSQLOpenAIPostgreSQLPower BIPySparkRScalaSnowflakeSpreadsheetsSQLSQLiteTableau
GroupTraining 2 or more people?Try DataCamp for Business
Machine Learning

What is Boosting?

Boosting improves machine learning performance by sequentially correcting errors and combining weak learners into strong predictors.
Vinod Chugani's photo

Vinod Chugani

August 16, 2024

Python

Python New Line: Methods for Code Formatting

Discover how to use \n to insert line breaks in strings and print() statements. Use the end parameter to keep your output on a single line. Improve your file handling skills with os.linesep for managing text across different systems.
Samuel Shaibu's photo

Samuel Shaibu

August 14, 2024

Python

Python Copy List: What You Should Know

Understand how to copy lists in Python. Learn how to use the copy() and list() functions. Discover the difference between shallow and deep copies.
Allan Ouko's photo

Allan Ouko

August 13, 2024

Python

if __name__ == "__main__" Python: Complete Explanation

The if __name__ == "__main__" block in Python allows you to define code that will only run when the file is executed directly as a script, but not when it's imported as a module into another script.
Stephen Gruppetta's photo

Stephen Gruppetta

August 12, 2024

Python

How to Round to 2 Decimal Places in Python

Learn how to round a number to two decimal places in Python for improved precision using techniques like round(), format(), and string formatting techniques.
Allan Ouko's photo

Allan Ouko

August 8, 2024

Python

Optuna for Deep Reinforcement Learning in Python

Explore how to master hyperparameter tuning with Optuna. Learn how to define hyperparameters, set up your objective function, and utilize sampling and pruning techniques in deep reinforcement learning.
Bunmi Akinremi's photo

Bunmi Akinremi

August 7, 2024

Python

Python Dictionary Append: How to Add Key-Value Pairs

Learn how to append key-value pairs in a Python dictionary using methods such as square bracket notation, .update() for bulk additions, and .setdefault() for conditional inserts.
Samuel Shaibu's photo

Samuel Shaibu

August 6, 2024

Python

How to Remove an Item from a List in Python

Understand how to remove items from a list in Python. Familiarize yourself with methods like remove(), pop(), and del for list management.
Allan Ouko's photo

Allan Ouko

August 1, 2024

Python

Python any() Function: Guide With Examples and Use Cases

The any() function in Python returns True if at least one element in an iterable (list, tuple, set, etc.) is true, and False otherwise.
Stephen Gruppetta's photo

Stephen Gruppetta

July 31, 2024

Python

How to Use the Python pop() Method

Learn how to use Python's pop() method to remove elements from lists and dictionaries, including how to remove items while iterating. Learn to avoid common errors like IndexError and KeyError.
Allan Ouko's photo

Allan Ouko

July 31, 2024

Python

What is Cosine Distance?

Explore cosine distance and cosine similarity. Discover calculations, applications, and comparisons with other metrics. Learn to implement in R and Python using numpy.
Vinod Chugani's photo

Vinod Chugani

July 28, 2024

Machine Learning

Stochastic Gradient Descent in Python: A Complete Guide for ML Optimization

Learn Stochastic Gradient Descent, an essential optimization technique for machine learning, with this comprehensive Python guide. Perfect for beginners and experts.
Bex Tuychiev's photo

Bex Tuychiev

July 24, 2024