Difference between revisions of "Python list structure"

From wikieduonline
Jump to navigation Jump to search
 
(6 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
https://docs.python.org/3/tutorial/datastructures.html
 
https://docs.python.org/3/tutorial/datastructures.html
 +
 +
your_list = []
 +
your_list = [3, 4, 5]
 +
your_fruit_list = ['orange', 'apple', 'banana']
  
your_list = [3, 4, 5]
 
 
  your_list.pop()
 
  your_list.pop()
  
  list.append
+
[[Methods]]:
  list.insert
+
  list.[[append]]
 +
  list.[[insert]]
 
  list.[[pop]]
 
  list.[[pop]]
 
  .../...
 
  .../...
Line 11: Line 15:
 
== Related ==
 
== Related ==
 
* [[Stack]]: [[FIFO]], [[LIFO]]
 
* [[Stack]]: [[FIFO]], [[LIFO]]
 +
* [[Dictionary]]
 +
* [[Set]]
 +
* [[Python array structure]]
  
 
== See also ==
 
== See also ==

Latest revision as of 15:03, 15 April 2023

Advertising: