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.
Pythonでは、このリストに次のものがあります
['HELLO', 'WORLD']
そのリストを次のように変換するにはどうすればよいですか
['OLLEH', 'DLROW']
間違いなく、ビルトインを使用するreversed方がスライス表記よりも明確ですx[::-1]。
reversed
x[::-1]
[reversed(word) for word in words]
また
map(reversed, words)
ラムダなしでマップは高速です。
結果のイテレータから文字列を取得する方が簡単だったらいいのにと思います。''.join()イテレータから文字列をまとめるよりも良いことはありますか?
''.join()