dataframe slice columns code example
Example 1: slicing in pandas
# iloc[row slicing, column slicing]
surveys_df.iloc[0:3, 1:4]
Example 2: get column pandas
column = df["column_name"]
Example 3: list slicing in pandas
>>> nums = [10, 20, 30, 40, 50, 60, 70, 80, 90]
>>> some_nums = nums[2:7]
>>> some_nums
[30, 40, 50, 60, 70