Select multiple columns from pandas dataframe

using PyCall

pd = pyimport("pandas")
np = pyimport("numpy")

function f()
	df = pd.read_csv("f.csv")
	print(df.iloc[:,:3])
end