dynamic array logic in python use

Solutions on MaxInterview for dynamic array logic in python use by the best coders in the world

we are a community of more than 2 million smartest coders
registration for
employee referral programs
are now open
get referred to google, amazon, flipkart and more
register now
  
pinned-register now
showing results for - "dynamic array logic in python use"
Amanda
19 May 2017
1>>> len(arr)
20
3>>> arr.append(1)
4>>> #First item entered
5>>> len(arr)
61
7>>> arr.append('Tutorialspoint')
8>>> #second item entered
9>>> len(arr)
102
11>>> arr[1]
12'Tutorialspoint'