メニューを表示するにはスワイプしてください
If we have a DataFrame called products with four columns: 'id', 'name', 'type', and 'price', how would we correctly extract the 'name' and 'price' columns?
products
'id'
'name'
'type'
'price'
正しい答えを選んでください
products[['name', 'price']]
products['name']['prices']
products['name', 'price']
products('name', 'price)
どのように改善できますか?
フィードバックありがとうございます!
AIに質問する
何でも質問するか、提案された質問の1つを試してチャットを始めてください