- Barajar
ActivarDesactivar
- Alphabetizar
ActivarDesactivar
- Frente Primero
ActivarDesactivar
- Ambos lados
ActivarDesactivar
- Leer
ActivarDesactivar
Leyendo...
Cómo estudiar sus tarjetas
Teclas de Derecha/Izquierda: Navegar entre tarjetas.tecla derechatecla izquierda
Teclas Arriba/Abajo: Colvea la carta entre frente y dorso.tecla abajotecla arriba
Tecla H: Muestra pista (3er lado).tecla h
Tecla N: Lea el texto en voz.tecla n
Boton play
Boton play
9 Cartas en este set
- Frente
- Atrás
L.append(object)
|
Append the object to the end of the list.
|
L.count(value)
|
Return the number of occurences of value
|
L.extent(iterable)
|
Extend list by appending elements from the iterable
|
L.index(value[,start, [stop]])
|
Return first index of value. Raises ValueError if the value is not present
|
L.insert(index, object)
|
Insert object before index
|
L.pop([index])
|
Remove and return item at index (defult last). Raises IndexError if list is empty or index is out of range.
|
L.remove(value)
|
Remove first ocurrence of value. Raises ValueError if the value is not present
|
L.reverse()
|
Reverse (IN PLACE)
|
L.sort(cmp=None, Key=None, reverse = False)
|
Stable sort (IN PLACE)
|