# Silencing Things in Python A few common ways to suppress output, warnings, and errors: ## 1. Suppress warnings ```python import warnings warnings.filterwarnings("ignore") # all