以下のテーブルを準備します。
import pandas as pd
# C: col => 列名
# R: row => 行名
d = {"C1": [1, 2, 3],
"C2": [2, 4, 6],
"C3": [3, 6, 9]}
r = ["R1", "R2", "R3"]
df = pd.DataFrame(d, index=r)
df.loc["R1", :] # 行の抽出
df["C1"] # 列の抽出
df.query("C1 == 1") # 行の抽出
df.loc[:, df.loc["R1", :] == 1] # 列の抽出
df.loc[df.index.str.contains("値"), :] # 行の抽出
df.loc[:, df.columns.str.contains("値")] # 列の抽出
df.loc[df.index.str.startswith("値"), :] # 行の抽出
df.loc[df.index.str.endswith("値"), :] # 行の抽出
df.loc[:, df.columns.str.startswith("値")] # 列の抽出
df.loc[:, df.columns.str.endswith("値")] # 列の抽出