Skip to content

Instantly share code, notes, and snippets.

@nockn
Created July 16, 2021 06:45
Show Gist options
  • Save nockn/444f35c89eea91e3873f3bbe26be1b18 to your computer and use it in GitHub Desktop.
Save nockn/444f35c89eea91e3873f3bbe26be1b18 to your computer and use it in GitHub Desktop.
[note] How to generate an empty list
"""
空のリストを作るとき
方法によっては、いとあやふしらしい
https://qiita.com/shinhiro/items/ff3545d733c43ef462e0
"""
N = 114514
list = [[] for _ in range(N)]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment