# Import cars data import pandas as pd cars = pd.read_csv('cars.csv', index_col = 0) # Print out drives_right value of Morocco print(cars.loc[['MOR', 'drives_right']]) # Print sub-DataFrame print(cars.iloc[[4,5], [1,2]])
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