Python/QuickRef: Difference between revisions

From Fundamental Ramen
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
{| class="wikitable"
{| class="wikitable"
! list || set || dict  
! [https://docs.python.org/3/tutorial/datastructures.html#more-on-lists list]
! set
! dict  
|-
|-
|
|

Revision as of 06:44, 28 January 2021

list set dict
  • append(x)
  • extend(iter)
  • insert(i, x)
  • remove(x)
  • pop([i])
  • clear()
  • index(x)
  • count()
  • sort()
  • reverse()
  • copy()