• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/9

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

9 Cards in this Set

  • Front
  • Back
dummy1
a
dummy2
a
dummy3
a
dummy4
a
dummy5
a
string.join(l)
Join characters in a list or tuple into a string.
Numeric.nonzero(a)
Returns an array with indeces of non-zero values in array a.
Numeric.sort(a)
Sorts array a.
range()
range([start,] stop [,step])

creates a list with values in range given

>>> range(2, 4)
[2, 3]