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

Accessing Tuples/Lists

  1. Access with positive index
  2. Access with negative index
  3. Count starts with the first index , but stops before the second index.
  4. Even for negative indices, the count stops before the second index
Answer

Accessing Tuples/Lists

  1. Access with positive index: someList[1]
  2. Access with negative index: someList[-1] from the end
  3. Count starts with the first index , but stops before the second index. : someList[1]:4 for items 1 to 3
  4. Even for negative indices, the count stops before the second index: someList[1:-1] for items 1 to before the last?

Tags
#python
Question

Accessing Tuples/Lists

  1. Access with positive index
  2. Access with negative index
  3. Count starts with the first index , but stops before the second index.
  4. Even for negative indices, the count stops before the second index
Answer
?

Tags
#python
Question

Accessing Tuples/Lists

  1. Access with positive index
  2. Access with negative index
  3. Count starts with the first index , but stops before the second index.
  4. Even for negative indices, the count stops before the second index
Answer

Accessing Tuples/Lists

  1. Access with positive index: someList[1]
  2. Access with negative index: someList[-1] from the end
  3. Count starts with the first index , but stops before the second index. : someList[1]:4 for items 1 to 3
  4. Even for negative indices, the count stops before the second index: someList[1:-1] for items 1 to before the last?

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.