カラムにキーを追加する
carsに、COUNTRYというキーを入れたいですが、うまくできません。
____________________________________
問題の内容
The call should give the same result: a column COUNTRY should be added to cars
自分のコード
# Import cars data import pandas as pd cars = pd.read_csv('cars.csv', index_col = 0) # Use .apply(str.upper) cars["name_length"] = cars["country"].apply(str.upper) print(cars)
エラー文
Did you correctly define the variable cars? There is no key 'COUNTRY'.
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/12/03 10:28