Difference between revisions of "Python list structure"

From wikieduonline
Jump to navigation Jump to search
(Created page with "https://docs.python.org/3/tutorial/datastructures.html == See also == * {{Python}}")
 
 
(12 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.pop()
 +
 +
[[Methods]]:
 +
list.[[append]]
 +
list.[[insert]]
 +
list.[[pop]]
 +
.../...
 +
 +
== Related ==
 +
* [[Stack]]: [[FIFO]], [[LIFO]]
 +
* [[Dictionary]]
 +
* [[Set]]
 +
* [[Python array structure]]
  
 
== See also ==
 
== See also ==
 
* {{Python}}
 
* {{Python}}
 +
 +
[[Category:Python]]

Latest revision as of 15:03, 15 April 2023

Advertising: