输出指定列元素的所有行

print(df.loc[df['Language'] == 'Python'])
print(df[df['Language'] == 'Python'])
print(df.query('Language=="Python"'))