标签: python
如果df1包含以下列,则我应该使用文本文件中的数据加载名为df1的DataFrame之后使用df1对象的哪个方法来创建df2:
id: integer product_name: string description: string price: decimal
我想创建一个仅包含product_name和price列的名为df2的新DataFrame。 df2:
product_name price
谢谢