LoginSignup
0
0

More than 5 years have passed since last update.

2系のPythonのListにはclear関数が無い(辞書にはある)

Posted at

Pythonの2系のリストにはclear関数が無い。
当たり前のようにあるだろうと
list.clear()
と書いてエラーになってから調べてみたのでまた調べなくていいようにメモっておく。

del a[:]

何がややこしいかっていうと辞書はClear関数を持ってるんだよね。
https://docs.python.jp/2.7/library/stdtypes.html#mapping-types-dict

割と同じような感覚で使うことが多いのに、片方はClearを持っているくせに片方は持ってないというのが悩ましい。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0