Had a question regarding the python code in Section 3 Unit 1

Course Name: [Getting Market Data: Stocks, Crypto, News

The following code was provided in the Section 3 Unit 1- Forex price data.

Did not understand the purpose of the code in the section
#ignore warnings

Import Libraries

For data manipulation

import numpy as np
import pandas as pd

To fetch financial data

import yfinance as yf

For visualisation

import matplotlib.pyplot as plt
%matplotlib inline
plt.style.use(‘seaborn-v0_8-darkgrid’)

Ignore warnings

import warnings
warnings.filterwarnings(‘ignore’)