# Importing pandas package import pandas # Importing numpy package import numpy # lists to hold sneaker details all_sneakers = ["Nike Air Force 1", "New Balance 550", "Nike Air Max 97", "Adidas Ultraboost", "Nike Air Jordan 1", "Nike Dunk Low", "Adidas Yeezy Boost 350 V2", "Jordan 4", "Off-White x Nike Air Presto", "Balenciaga Triple S"] sneaker_price = [120, 160, 190, 220, 300, 385, 440, 685, 850, 1000] # all_surcharges = [0, 0, 0.53, 0.53, 0] sneaker_dict = { 'Sneakers': all_sneakers, 'Sneaker Price': sneaker_price, } # create dataframe / table from dictionary sneaker_frame = pandas.DataFrame(sneaker_dict) # Rearranging index sneaker_frame.index = numpy.arange(1, len(sneaker_frame) + 1) print(sneaker_frame) print()