リストには値が1つあり、1つは空です。私はデータからリストから2つの値を取り出し、forループを使用して空のリストに入れたいと思います。私は一つの価値を得る方法を知っています。しかし、私はどのように他を取得するか分からない。私は、出力['apples', 'peaches']
または['apples', 'cherry']
からfavorite_fruit
変数をしたいリストから空のリストに値を追加する
all_fruits = ['apples', 'cherry', 'pear', 'strawberry', 'peach']
# The above list is a list of all fruits
# Now lets creat a blank list called favorite fruit
favorite_fruit = []
# The objective is to choose two fruits from the all fruits list and append them to the favorite fruit list
for fruit in all_fruits:
if fruit == 'apples':
favorite_fruit.append(fruit)
print favorite_fruit
Output: ['apples']
:ここでは以下の私のコードです。これをどうやって行うのですか?ありがとう
りんごのインデックスを取得し、そのインデックス – smac89
別を追加あなたの好きな果物は何だと判断していますか?ランダムですか?最初の2? – bigbounty
から反復 – depperm