我想按名称选择一些列,比如
selection = df[['Name', 'Qualification']]
还有一些列被一个过滤器过滤,比如
selection = df.filter(regex=("Level.*"))
如何在一个指令中组合这些选择?