Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私のコードはセットを反復処理し、アクターの名前を出力します。
for actor in actorsByMovies(): print actor+",",
結果は次のようになります。
Brad Pitt, George Clooney,
しかし、最後のコンマを出力しないように、最後の要素を検出する必要があります。結果は次のようになります。
Brad Pitt, George Clooney
どうやってやるの?
print(', '.join(actorsByMovies()))