str.split
文字列がある場合は、次の方法で空白の周りに分割できます。
"hello world!".split()
戻り値
['hello', 'world!']
次のようなリストがある場合
['hey', 1, None, 2.0, 'string', 'another string', None, 3.0]
None
分割して私に与える分割方法はありますか
[['hey', 1], [2.0, 'string', 'another string'], [3.0]]
組み込みメソッドがない場合、それを行うための最も Pythonic/エレガントな方法は何でしょうか?