I was given a task where I'm supposed to find largest value in 'Salary' column and print the value.
Here's the code:
    import numpy as np
    import pandas as pd 
    # TODO: Find the largest number in 'Salary' column
    
    data_one = pd.read_excel("C:\\Users\\HP\\Documents\\DataScience task\\Employee.xlsx")
    dataframe_data = pd.DataFrame(data_one)
    find_largest_salary = dataframe_data['Salary']
Output:
    First Name  Last Name   Gender  Age Experience (Years)  Salary
0   Arnold  Carter  Male            21  10                   8344
    1   Arthur  Farrell Male        20  7                    6437
    2   Richard Perry   Male        28  3                    8338
    3   Ellia   Thomas  Female      26  4                    8870
    4   Jacob   Kelly   Male        21  4                    548
    ... ... ... ... ... ... ...
    95  Leonardo    Barnes  Male    23  6                    7120
    96  Kristian    Mason   Male    21  7                    7018
    97  Paul    Perkins Male        21  6                    2929
    98  Justin  Moore   Male        25  0                    3141
    99  Naomi   Ryan    Female      22  10                   7486
The output I wanted (example):
99999
 
    