from pandas import DataFrame
data = {'Product': ['Computer', 'Software', 'Mobile Phone', 'Tablet'],
'Price': [1100, 99, 800, 700]
}
df = DataFrame(data, columns= ['Product', 'Price'])
print (df)
'''
run:
Product Price
0 Computer 1100
1 Software 99
2 Mobile Phone 800
3 Tablet 700
'''