# Import cars data import pandas as pd cars = pd.read_csv('cars.csv', index_col = 0) # Print out observation for Japan print(cars.loc['JPN']) print(cars.iloc[2]) # Print out observations for Australia and Egypt print(cars.loc[['AUS','EG']]) print(cars.iloc[[1,6]])
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter