Learn practical skills, build real-world projects, and advance your career
import numpy as np
import platform
import matplotlib as mpl                   #importing libraries
import matplotlib.pylab as plt
print(platform.python_version())
print(np.__version__)
print(mpl.__version__)
print(plt.__version__)
3.7.9 1.19.1 3.3.1 1.19.1
import pandas as pd                   #importing library
print(pd.__version__) 
1.1.1
import seaborn as sns
plt.rcParams['figure.figsize']=[15,10]
%%HTML                                     
<style type="text/css">
table.dataframe td, table.dataframe th {
    border: 1px  black solid !important;
  color: black !important;
}

#Used to add style to dataFrames
sns.set_style('dark')                    #used to add styles to seaborn plots
sns.set_context('talk')