Learn practical skills, build real-world projects, and advance your career

Sir William Gage - Talent Show

In This Notebook I Will Be Showing You My Coding Skills Of Python

Topics Covered In This Notebook:
  • Python Basics
  • Numpy Library
  • Pandas Library
  • Matplotlib Library

Note: All The Stuff In This Notebook Is Just The Brief Stuff Of The Libraries and My Knowledge Of Them.

I am importing the libraries we will be using for this notebook

import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
%matplotlib inline
np.random.seed(101)
from numpy.random import randn
Basics Of Python
# Classic "Print Statement", To Print a Word or Number 
# Note - for printing words you have to add the quotes
print("Hello World")
Hello World