# BMI for a person is calculated as weight in kg / (height in meters * height in meters). You need to calculate everyone in the following list variables. (Hint: 23.31, 25.98, 24.54)
# You need to calculate the sale price after discount for each item in the following dictionary variables. (Hint: Apple 58.5, Book 60.9, Computer 60.8)
# Download the following transaction data https://www.dropbox.com/s/k97psmvvom8p8jl/supermarket.csv?dl=0. (Warning: do not use excel to open and save. Excel will only save the first 1 million records and the dataset has more than 3 million records). This data has the information for each purchased item with its “Date, Transaction Number, UPC Number, Product Name, Customer Account, Qty, Regular Price, Sale Price, and Discount”. Please write the python code to show the Date, Transaction Number, UPC Number, Customer Account, and Sale Price for the 2000000th records. (Hint: 2016-09-06 11:54:56.513, T00700048761, P0007800000209, C0044000035045, 4.99)