how to create an unlimited size array in python?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • peachdot
    New Member
    • Aug 2010
    • 20

    how to create an unlimited size array in python?

    hi,

    how do i create an unlimited array size?
  • bvdet
    Recognized Expert Specialist
    • Oct 2006
    • 2851

    #2
    You will have to be more specific than that. In Python, the size of a list is only limited by the available memory. The size of a list is dynamic.

    Comment

    Working...