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.
次のように指定されたリストがあるとします。
x = ['a', '\n', 'b', '\n', 'c', '\n', '\n', 'd']
''.join()関数を使用して改行文字を無視して取得するにはどうすればよい'abcd'ですか?
''.join()
'abcd'
''.join([x.strip() for x in ['a', '\n', 'b', '\n', 'c', '\n', '\n', 'd']])