1
は、サンプルコードがあります:なぜリスト(print(x.upper()、end = '')は 'spam'のxに対して)は[None、None、None、None]リストを取得しますか? 「学習のPython第5回」のページ608で
>>> list(print(x.upper(), end=' ') for x in 'spam')
S P A M [None, None, None, None]
ので、なぜ[なし、なし、なし、なし]が最後にポップアップしますか?