Python/QuickRef

From Fundamental Ramen
< Python
Revision as of 12:26, 29 January 2021 by Tacoball (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
list set dict
  • append(x)
  • extend(iter)
  • insert(i, x)
  • remove(x)
  • pop([i])
  • clear()
  • index(x)
  • count()
  • sort()
  • reverse()
  • copy()
  • add(x)
  • remove(x)
  • pop()
  • clear()
  • clear()
  • copy()
  • get(key, [default])
  • items()
  • keys()
  • pop(key, [default])
  • popitem()