Do you want BuboFlash to help you learning these things? Or do you want to add or correct something? Click here to log in or create user.



Tags
#python
Question

Modifying a list.

  1. Modify a list: Add new items
  2. Modify a list: Remove items
  3. Access and remove list data using
  4. Modify a list: Insert a new item at a certain index
Answer
  1. Modify a list: Add new items
    someList.append('Add')
  2. Modify a list: Remove items
    someList.remove('remove')
  3. Access and remove list data using
    someList.pop(2)
    #shows the thing that was removed
  4. Modify a list: Insert a new item at a certain index
    someList.insert(index,value)

Tags
#python
Question

Modifying a list.

  1. Modify a list: Add new items
  2. Modify a list: Remove items
  3. Access and remove list data using
  4. Modify a list: Insert a new item at a certain index
Answer
?

Tags
#python
Question

Modifying a list.

  1. Modify a list: Add new items
  2. Modify a list: Remove items
  3. Access and remove list data using
  4. Modify a list: Insert a new item at a certain index
Answer
  1. Modify a list: Add new items
    someList.append('Add')
  2. Modify a list: Remove items
    someList.remove('remove')
  3. Access and remove list data using
    someList.pop(2)
    #shows the thing that was removed
  4. Modify a list: Insert a new item at a certain index
    someList.insert(index,value)

Summary

statusnot learnedmeasured difficulty37% [default]last interval [days]               
repetition number in this series0memorised on               scheduled repetition               
scheduled repetition interval               last repetition or drill

Details

No repetitions


Discussion

Do you want to join discussion? Click here to log in or create user.