python リストの取り出し方
以下のリストから、
house = [["hallway", 11.25], ["kitchen", 18.0], ["living room", 20.0], ["bedroom", 10.75], ["bathroom", 9.50]]
the hallway is 11.25 sqm
のような形で出力したいです。
自分の書いたコード
↓↓↓
for name in house: print("the" + str(name) + "is" + str(house) + "sqm")
houseの中でそれぞれの値を取る方法を知りたいです。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/12/02 11:14