リストを作成しましたflowers
>>> flowers = ['rose','bougainvillea','yucca','marigold','daylilly','lilly of the valley']
それで、
リストの最初の 3 つのオブジェクトで構成されるlistthorny
のサブリストをlist に割り当てる必要がありました。flowers
これは私が試したものです:
>>> thorny = []
>>> thorny = flowers[1-3]
>>> thorny
'daylilly'
>>> thorny = flowers[0-2]
>>> thorny
'daylilly'
>>> flowers[0,1,2]
Traceback (most recent call last):
File "<pyshell#76>", line 1, in <module>
flowers[0,1,2]
TypeError: list indices must be integers, not tuple
>>> thorny = [flowers[0] + ' ,' + flowers[1] + ' ,' + flowers[2]]
>>> thorny
['rose ,bougainvillea ,yucca']
リスト内のリストの外観を維持しながら、リスト フラワーの最初の 3 つのオブジェクトだけを取得するにはどうすればよいですか?