-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy path08-lists.tex
executable file
·2069 lines (1789 loc) · 59.8 KB
/
08-lists.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
% LaTeX source for ``Python for Informatics: Exploring Information''
% Copyright (c) 2010- Charles R. Severance, All Rights Reserved
\chapter{Listas}
%\chapter{Lists}
\index{lista}
\index{type!lista}
%\index{list}
%\index{type!list}
\section{Uma lista é uma sequência}
%\section{A list is a sequence}
Assim como uma string, uma {\bf lista} é uma sequência de valores. Em
uma string, os valores são caracteres, já em uma lista, eles podem ser
de qualquer tipo. Os valores em uma lista são chamados de {\bf elementos}
e por vezes também chamados de {\bf itens}.
%Like a string, a {\bf list} is a sequence of values. In a string, the
%values are characters; in a list, they can be any type. The values in
%list are called {\bf elements} or sometimes {\bf items}.
\index{elemento}
\index{sequência}
\index{item}
%\index{element}
%\index{sequence}
%\index{item}
Existem diversas maneiras de se criar uma nova lista; a mais simples
é colocar os elementos dentro de colchetes (\verb"[" e \verb"]"):
%There are several ways to create a new list; the simplest is to
%enclose the elements in square brackets (\verb"[" and \verb"]"):
\beforeverb
\begin{verbatim}
[10, 20, 30, 40]
['crunchy frog', 'ram bladder', 'lark vomit']
\end{verbatim}
\afterverb
%\beforeverb
%\begin{verbatim}
%[10, 20, 30, 40]
%['crunchy frog', 'ram bladder', 'lark vomit']
%\end{verbatim}
%\afterverb
%
O primeiro exemplo é uma lista de quatro inteiros. A segunda é uma lista
de três strings. Os elementos de uma lista não precisam ter o mesmo tipo.
A lista a seguir contém uma string, um número flutuante, um inteiro e (lo!)
outra lista:
%The first example is a list of four integers. The second is a list of
%three strings. The elements of a list don't have to be the same type.
%The following list contains a string, a float, an integer, and
%(lo!) another list:
\beforeverb
\begin{verbatim}
['spam', 2.0, 5, [10, 20]]
\end{verbatim}
\afterverb
Uma lista dentro de outra lista é chamada de lista {\bf aninhada}.
%A list within another list is {\bf nested}.
\index{lista aninhada}
\index{lista!aninhada}
%\index{nested list}
%\index{list!nested}
Uma lista que não contenha elementos
é chamada de uma lista vazia; você pode criar uma com
colchetes vazios, \verb"[]".
%A list that contains no elements is
%called an empty list; you can create one with empty
%brackets, \verb"[]".
\index{lista vazia}
\index{lista!vazia}
%\index{empty list}
%\index{list!empty}
Como você deve imaginar, você pode atribuir valores de uma lista para variáveis:
%As you might expect, you can assign list values to variables:
\beforeverb
\begin{verbatim}
>>> cheeses = ['Cheddar', 'Edam', 'Gouda']
>>> numbers = [17, 123]
>>> empty = []
>>> print cheeses, numbers, empty
['Cheddar', 'Edam', 'Gouda'] [17, 123] []
\end{verbatim}
\afterverb
%\beforeverb
%\begin{verbatim}
%>>> cheeses = ['Cheddar', 'Edam', 'Gouda']
%>>> numbers = [17, 123]
%>>> empty = []
%>>> print cheeses, numbers, empty
%['Cheddar', 'Edam', 'Gouda'] [17, 123] []
%\end{verbatim}
%\afterverb
%
\index{tarefa}
%\index{assignment}
\section{Listas são mutáveis}
%\section{Lists are mutable}
\index{lista!elemento}
\index{acesso}
\index{índice}
\index{operador colchetes}
\index{operador!colchetes}
%\index{list!element}
%\index{access}
%\index{index}
%\index{bracket operator}
%\index{operator!bracket}
A sintaxe para acessar os elementos de uma lista é a mesma utilizada
para acessar os caracteres de de uma string---o operador colchetes.
A expressão dentro dos colchetes especifica o índice. Lembre que os
índices iniciam no 0:
%The syntax for accessing the elements of a list is the same as for
%accessing the characters of a string---the bracket operator. The
%expression inside the brackets specifies the index. Remember that the
%índices start at 0:
\beforeverb
\begin{verbatim}
>>> print cheeses[0]
Cheddar
\end{verbatim}
\afterverb
%
%\beforeverb
%\begin{verbatim}
%>>> print cheeses[0]
%Cheddar
%\end{verbatim}
%\afterverb
Diferente das strings, listas são mutáveis pois é possível modificar a
ordem dos itens em uma lista ou reatribuir um item da lista.
Quando um operador colchete aparece ao lado esquerdo da atribuição,
ele identifica o elemento da lista que será atribuído.
%Unlike strings, lists are mutable because you can change the order
%of items in a list or reassign an item in a list.
%When the bracket operator appears on the left side of an assignment,
%it identifies the element of the list that will be assigned.
%
\index{mutabilidade}
%\index{mutability}
\beforeverb
\begin{verbatim}
>>> numbers = [17, 123]
>>> numbers[1] = 5
>>> print numbers
[17, 5]
\end{verbatim}
\afterverb
%\beforeverb
%\begin{verbatim}
%>>> numbers = [17, 123]
%>>> numbers[1] = 5
%>>> print numbers
%[17, 5]
%\end{verbatim}
%\afterverb
%
O element 1 de {\tt numbers}, que era 123, agora é 5.
%The one-eth element of {\tt numbers}, which
%used to be 123, is now 5.
\index{índice!inicia no zero}
\index{zero, índice inicia no}
%\index{index!starting at zero}
%\index{zero, index starting at}
Você pode pensar em uma lista como um relacionamento entre índices e
elementos. Este relacionamento é chamado de {\bf mapeamento}; cada
índice ``mapeia para'' um dos elementos.
%You can think of a list as a relationship between índices and
%elements. This relationship is called a {\bf mapping}; each index
%``maps to'' one of the elements.
\index{item atribuição}
\index{atribuição!item}
%\index{item assignment}
%\index{assignment!item}
índices de lista funcionam da mesma maneira que os índices de strings:
%List índices work the same way as string índices:
\begin{itemize}
\item Qualquer expressão de um inteiro pode ser usada como um índice.
%\item Any integer expression can be used as an index.
\item Se você tentar ler ou escrever um elemento que não existe, você
terá um {\tt IndexError}.
%\item If you try to read or write an element that does not exist, you
%get an {\tt IndexError}.
\index{exception!IndexError}
\index{IndexError}
%\index{exception!IndexError}
%\index{IndexError}
\item Caso um índice tenha um valor negativo, ele contará ao contrário,
do fim para o início da lista.
%\item If an index has a negative value, it counts backward from the
%end of the list.
\end{itemize}
\index{lista!índice}
%\index{list!index}
\index{lista!membros}
\index{membros!lista}
\index{operador in}
\index{operador!in}
%\index{list!membership}
%\index{membership!list}
%\index{in operator}
%\index{operator!in}
O operador {\tt in} também funciona em listas.
%The {\tt in} operator also works on lists.
\beforeverb
\begin{verbatim}
>>> cheeses = ['Cheddar', 'Edam', 'Gouda']
>>> 'Edam' in cheeses
True
>>> 'Brie' in cheeses
False
\end{verbatim}
\afterverb
%\beforeverb
%\begin{verbatim}
%>>> cheeses = ['Cheddar', 'Edam', 'Gouda']
%>>> 'Edam' in cheeses
%True
%>>> 'Brie' in cheeses
%False
%\end{verbatim}
%\afterverb
\section{Percorrendo uma lista}
\index{lista!percorrendo}
\index{percorrendo!lista}
\index{for laço}
\index{laço!for}
\index{instrução!for}
%\section{Traversing a list}
%\index{list!traversal}
%\index{traversal!list}
%\index{for loop}
%\index{loop!for}
%\index{statement!for}
A maneira mais comum de se percorrer os elementos de uma lista é
com um laço {\tt for}. A sintaxe é a mesma da utilizada para strings:
%The most common way to traverse the elements of a list is
%with a {\tt for} loop. The syntax is the same as for strings:
\beforeverb
\begin{verbatim}
for cheese in cheeses:
print cheese
\end{verbatim}
\afterverb
%\beforeverb
%\begin{verbatim}
%for cheese in cheeses:
% print cheese
%\end{verbatim}
%\afterverb
%
Isto funciona se você precisa ler apenas os elementos da lista.
Porém, caso você precise escrever ou atualizar elementos, você
precisa de índices. Um forma comum de fazer isto é combinar as
funções {\tt range} e {\tt len}:
%This works well if you only need to read the elements of the
%list. But if you want to write or update the elements, you
%need the índices. A common way to do that is to combine
%the functions {\tt range} and {\tt len}:
\index{fazer laços!com índices}
\index{índice!fazer laços com}
%\index{looping!with índices}
%\index{index!looping with}
\beforeverb
\begin{verbatim}
for i in range(len(numbers)):
numbers[i] = numbers[i] * 2
\end{verbatim}
\afterverb
%\beforeverb
%\begin{verbatim}
%for i in range(len(numbers)):
% numbers[i] = numbers[i] * 2
%\end{verbatim}
%\afterverb
%
Este laço percorre a lista e atualiza cada elemento. {\tt len}
retorna o número de elementos na lista. {\tt range} retorna uma
lista de índices de 0 a $n-1$, onde $n$ é o tamanho da lista.
Cada vez que passa pelo laço, {\tt i} recebe o índice do próximo
elemento. A instrução de atribuição no corpo,
utiliza {\tt i} para ler o valor antigo do elemento e atribuir ao novo valor.
%This loop traverses the list and updates each element. {\tt len}
%returns the number of elements in the list. {\tt range} returns
%a list of índices from 0 to $n-1$, where $n$ is the length of
%the list. Each time through the loop, {\tt i} gets the index
%of the next element. The assignment statement in the body uses
%{\tt i} to read the old value of the element and to assign the
%new value.
\index{atualizar item}
\index{atualizar!item}
%\index{item update}
%\index{update!item}
Um laço {\tt for} em uma lista vazia nunca executa as instruções dentro do laço:
%A {\tt for} loop over an empty list never executes the body:
\beforeverb
\begin{verbatim}
for x in empty:
print 'Esta linha nunca será executada.'
\end{verbatim}
\afterverb
%\beforeverb
%\begin{verbatim}
%for x in empty:
% print 'This never happens.'
%\end{verbatim}
%\afterverb
%
Embora uma lista possa conter outra lista, a lista aninhada ainda conta
como um único elemento. O tamanho dessa lista é quatro:
%Although a list can contain another list, the nested
%list still counts as a single element. The length of this list is
%four:
\index{lista aninhada}
\index{aninhada!lista}
%\index{nested list}
%\index{list!nested}
\beforeverb
\begin{verbatim}
['spam', 1, ['Brie', 'Roquefort', 'Pol le Veq'], [1, 2, 3]]
\end{verbatim}
\afterverb
%\beforeverb
%\begin{verbatim}
%['spam', 1, ['Brie', 'Roquefort', 'Pol le Veq'], [1, 2, 3]]
%\end{verbatim}
%\afterverb
\section{Operações de Lista}
\index{lista!operações de}
%\section{List operations}
%\index{list!operation}
O operador {\tt +} concatena listas:
%The {\tt +} operator concatenates lists:
\index{lista!concatenação}
\index{concatenação!lista}
%\index{concatenation!list}
%\index{list!concatenation}
\beforeverb
\begin{verbatim}
>>> a = [1, 2, 3]
>>> b = [4, 5, 6]
>>> c = a + b
>>> print c
[1, 2, 3, 4, 5, 6]
\end{verbatim}
\afterverb
%\beforeverb
%\begin{verbatim}
%>>> a = [1, 2, 3]
%>>> b = [4, 5, 6]
%>>> c = a + b
%>>> print c
%[1, 2, 3, 4, 5, 6]
%\end{verbatim}
%\afterverb
%
De modo parecido, o operador {\tt *} repete uma lista pelo número de vezes informado:
%Similarly, the {\tt *} operator repeats a list a given number of times:
\index{lista!repetição}
\index{repetição!lista}
%\index{repetition!list}
%\index{list!repetition}
\beforeverb
\begin{verbatim}
>>> [0] * 4
[0, 0, 0, 0]
>>> [1, 2, 3] * 3
[1, 2, 3, 1, 2, 3, 1, 2, 3]
\end{verbatim}
\afterverb
%\beforeverb
%\begin{verbatim}
%>>> [0] * 4
%[0, 0, 0, 0]
%>>> [1, 2, 3] * 3
%[1, 2, 3, 1, 2, 3, 1, 2, 3]
%\end{verbatim}
%\afterverb
%
O primeiro exemplo repete {\tt [0]} quatro vezes. O segundo exemplo
repete a lista {\tt [1, 2, 3]} três vezes.
%The first example repeats {\tt [0]} four times. The second example
%repeats the list {\tt [1, 2, 3]} three times.
\section{Fatiamento de Lista}
%\section{List slices}
\index{operador de fatiamento}
\index{operador de!fatiamento}
\index{índice!fatia}
\index{lista!fatia}
\index{fatia!lista}
%\index{slice operator}
%\index{operator!slice}
%\index{index!slice}
%\index{list!slice}
%\index{slice!list}
O operador de fatiamento também funciona em listas:
%The slice operator also works on lists:
\beforeverb
\begin{verbatim}
>>> t = ['a', 'b', 'c', 'd', 'e', 'f']
>>> t[1:3]
['b', 'c']
>>> t[:4]
['a', 'b', 'c', 'd']
>>> t[3:]
['d', 'e', 'f']
\end{verbatim}
\afterverb
%\beforeverb
%\begin{verbatim}
%>>> t = ['a', 'b', 'c', 'd', 'e', 'f']
%>>> t[1:3]
%['b', 'c']
%>>> t[:4]
%['a', 'b', 'c', 'd']
%>>> t[3:]
%['d', 'e', 'f']
%\end{verbatim}
%\afterverb
%
Se você omite o primeiro índice, o fatiamento é iniciado no começo da lista.
Se omitir o segundo, o fatiamento vai até fim. Então se ambos são omitidos,
a fatia é uma cópia da lista inteira.
%If you omit the first index, the slice starts at the beginning.
%If you omit the second, the slice goes to the end. So if you
%omit both, the slice is a copy of the whole list.
\index{lista!cópia}
\index{fatia!cópia}
\index{cópia!fatia}
%\index{list!copy}
%\index{slice!copy}
%\index{copy!slice}
\beforeverb
\begin{verbatim}
>>> t[:]
['a', 'b', 'c', 'd', 'e', 'f']
\end{verbatim}
\afterverb
%\beforeverb
%\begin{verbatim}
%>>> t[:]
%['a', 'b', 'c', 'd', 'e', 'f']
%\end{verbatim}
%\afterverb
%
Uma vez que lista são mutáveis, com frequência é útil fazer uma cópia
antes de realizar operações que dobram, reviram ou mutilam listas.
%Since lists are mutable, it is often useful to make a copy
%before performing operations that fold, spindle, or mutilate
%lists.
\index{mutabilidade}
%\index{mutability}
Um operador de fatiamento do lado esquerdo de uma atribuição pode atualizar múltiplos elementos.
%A slice operator on the left side of an assignment
%can update multiple elements:
\index{fatia!atualização}
\index{atualização!fatia}
%\index{slice!update}
%\index{update!slice}
\beforeverb
\begin{verbatim}
>>> t = ['a', 'b', 'c', 'd', 'e', 'f']
>>> t[1:3] = ['x', 'y']
>>> print t
['a', 'x', 'y', 'd', 'e', 'f']
\end{verbatim}
\afterverb
%\beforeverb
%\begin{verbatim}
%>>> t = ['a', 'b', 'c', 'd', 'e', 'f']
%>>> t[1:3] = ['x', 'y']
%>>> print t
%['a', 'x', 'y', 'd', 'e', 'f']
%\end{verbatim}
%\afterverb
%
\section{Métodos de lista}
%\section{List methods}
\index{lista!método}
\index{método, lista}
%\index{list!method}
%\index{method, list}
O Python provê métodos que operam nas listas. Por exemplo,
{\tt append} adiciona um novo elemento ao fim da lista:
%Python provides methods that operate on lists. For example,
%{\tt append} adds a new element to the end of a list:
\index{método append}
\index{método!append}
%\index{append method}
%\index{method!append}
\beforeverb
\begin{verbatim}
>>> t = ['a', 'b', 'c']
>>> t.append('d')
>>> print t
['a', 'b', 'c', 'd']
\end{verbatim}
\afterverb
%\beforeverb
%\begin{verbatim}
%>>> t = ['a', 'b', 'c']
%>>> t.append('d')
%>>> print t
%['a', 'b', 'c', 'd']
%\end{verbatim}
%\afterverb
%
{\tt extend} recebe uma lista como argumento e adiciona todos seus elementos.
%{\tt extend} takes a list as an argument and appends all of
%the elements:
\index{método extender}
\index{extender!método}
%\index{extend method}
%\index{method!extend}
\beforeverb
\begin{verbatim}
>>> t1 = ['a', 'b', 'c']
>>> t2 = ['d', 'e']
>>> t1.extend(t2)
>>> print t1
['a', 'b', 'c', 'd', 'e']
\end{verbatim}
\afterverb
%\beforeverb
%\begin{verbatim}
%>>> t1 = ['a', 'b', 'c']
%>>> t2 = ['d', 'e']
%>>> t1.extend(t2)
%>>> print t1
%['a', 'b', 'c', 'd', 'e']
%\end{verbatim}
%\afterverb
%
Este exemplo deixa {\tt t2} sem modificação.
%This example leaves {\tt t2} unmodified.
{\tt sort} organiza os elementos da lista do menor para o maior:
%{\tt sort} arranges the elements of the list from low to high:
\index{método sort}
\index{sort!método}
%\index{sort method}
%\index{method!sort}
\beforeverb
\begin{verbatim}
>>> t = ['d', 'c', 'e', 'b', 'a']
>>> t.sort()
>>> print t
['a', 'b', 'c', 'd', 'e']
\end{verbatim}
\afterverb
%\beforeverb
%\begin{verbatim}
%>>> t = ['d', 'c', 'e', 'b', 'a']
%>>> t.sort()
%>>> print t
%['a', 'b', 'c', 'd', 'e']
%\end{verbatim}
%\afterverb
%
A maior parte dos métodos de lista são vazios; eles modificam a lista e retornam {\tt None}.
Caso você acidentalmente escreva {\tt t = t.sort()}, ficará desapontado com o resultado.
%Most list methods are void; they modify the list and return {\tt None}.
%If you accidentally write {\tt t = t.sort()}, you will be disappointed
%with the result.
\index{método void}
\index{método!void}
\index{None valor especial}
\index{valor especial!None}
%\index{void method}
%\index{method!void}
%\index{None special value}
%\index{special value!None}
\section{Deletando elementos}
%\section{Deleting elements}
\index{deleção de elemento}
\index{deleção, elemento de uma lista}
%\index{element deletion}
%\index{deletion, element of list}
Existem diversas maneiras de se deletar elementos de uma lista. Se você
souber o índice do elemento que você quer, pode usar o {\tt pop}:
%There are several ways to delete elements from a list. If you
%know the index of the element you want, you can use
%{\tt pop}:
\index{método pop}
\index{método!pop}
%\index{pop method}
%\index{method!pop}
\beforeverb
\begin{verbatim}
>>> t = ['a', 'b', 'c']
>>> x = t.pop(1)
>>> print t
['a', 'c']
>>> print x
b
\end{verbatim}
\afterverb
%\beforeverb
%\begin{verbatim}
%>>> t = ['a', 'b', 'c']
%>>> x = t.pop(1)
%>>> print t
%['a', 'c']
%>>> print x
%b
%\end{verbatim}
%\afterverb
%
{\tt pop} modifica a lista e retorna o elemento que foi removido.
Se você não informa um índice, ele deletará e retornará o último elemento da lista.
%{\tt pop} modifies the list and returns the element that was removed.
%If you don't provide an index, it deletes and returns the
%last element.
Se você não precisa do valor removido, poderá usar o operador {\tt del}:
%If you don't need the removed value, you can use the {\tt del}
%operator:
\index{operador del}
\index{operador!del}
%\index{del operator}
%\index{operator!del}
\beforeverb
\begin{verbatim}
>>> t = ['a', 'b', 'c']
>>> del t[1]
>>> print t
['a', 'c']
\end{verbatim}
\afterverb
%\beforeverb
%\begin{verbatim}
%>>> t = ['a', 'b', 'c']
%>>> del t[1]
%>>> print t
%['a', 'c']
%\end{verbatim}
%\afterverb
%
Se você sabe qual elemento você quer remover ( mas não sabe o índice ), você
pode usar o {\tt remove}:
%If you know the element you want to remove (but not the index), you
%can use {\tt remove}:
\index{método remove}
\index{método!remove}
%\index{remove method}
%\index{method!remove}
\beforeverb
\begin{verbatim}
>>> t = ['a', 'b', 'c']
>>> t.remove('b')
>>> print t
['a', 'c']
\end{verbatim}
\afterverb
%
O valor retornado de {\tt remove} é {\tt None}.
%The return value from {\tt remove} is {\tt None}.
\index{valor especial None}
\index{valor especial!None}
Para remover mais de um elemento, você pode usar {\tt del} com
um índice de fatiamento:
%To remove more than one element, you can use {\tt del} with
%a slice index:
\beforeverb
\begin{verbatim}
>>> t = ['a', 'b', 'c', 'd', 'e', 'f']
>>> del t[1:5]
>>> print t
['a', 'f']
\end{verbatim}
\afterverb
%\beforeverb
%\begin{verbatim}
%>>> t = ['a', 'b', 'c']
%>>> t.remove('b')
%>>> print t
%['a', 'c']
%\end{verbatim}
%\afterverb
%
Como de costume, uma fatia seleciona todos os elementos até o segundo índice, porém sem incluí-lo.
%As usual, the slice selects all the elements up to, but not
%including, the second index.
\section{Listas e funções}
%\section{Lists and functions}
Existem várias funções built-in que podem ser usadas em listas,
permitindo que você tenha uma visão rápida da lista sem a necessidade de escrever
o seu próprio laço:
%There are a number of built-in functions that can be used on lists
%that allow you to quickly look through a list without
%writing your own loops:
\beforeverb
\begin{verbatim}
>>> nums = [3, 41, 12, 9, 74, 15]
>>> print len(nums)
6
>>> print max(nums)
74
>>> print min(nums)
3
>>> print sum(nums)
154
>>> print sum(nums)/len(nums)
25
\end{verbatim}
\afterverb
%\beforeverb
%\begin{verbatim}
%>>> nums = [3, 41, 12, 9, 74, 15]
%>>> print len(nums)
%6
%>>> print max(nums)
%74
%>>> print min(nums)
%3
%>>> print sum(nums)
%154
%>>> print sum(nums)/len(nums)
%25
%\end{verbatim}
%\afterverb
%
A função {\tt sum()} funciona apenas quando os elementos da lista são números.
As outras funções ({\tt max()}, {\tt len()}, etc.) funcionam com listas de strings
e outros tipos que são comparáveis.
%The {\tt sum()} function only works when the list elements are numbers.
%The other functions ({\tt max()}, {\tt len()}, etc.) work with lists of
%strings and other types that can be comparable.
Nós podemos reescrever um programa anterior que computou a média de uma lista de
números adicionados pelo usuário utilizando uma lista.
%We could rewrite an earlier program that computed the average of
%a list of numbers entered by the user using a list.
Primeiramente, o programa para calcular uma média sem uma lista:
%First, the program to compute an average without a list:
\beforeverb
\begin{verbatim}
total = 0
count = 0
while ( True ) :
inp = raw_input('Digite um número: ')
if inp == 'done' : break
value = float(inp)
total = total + value
count = count + 1
average = total / count
print 'Average:', average
\end{verbatim}
\afterverb
%\beforeverb
%\begin{verbatim}
%total = 0
%count = 0
%while ( True ) :
% inp = raw_input('Enter a number: ')
% if inp == 'done' : break
% value = float(inp)
% total = total + value
% count = count + 1
%
%average = total / count
%print 'Average:', average
%\end{verbatim}
%\afterverb
%
Neste programa, temos as variáveis {\tt count} e {\tt total} para armazenar
a contagem e o total da soma dos número que o usuário digitou, enquanto pedimos
mais números para o usuário.
% In this program, we have {\tt count} and {\tt total} variables to
% keep the number and running total of the user's numbers as
% we repeatedly prompt the user for a number.
Nós poderíamos simplesmente guardar cada número a medida que o usuário vai
adicionando e usar funções built-in para calcular a soma e a contagem no final.
%We could simply remember each number as the user entered it
%and use built-in functions to compute the sum and count at
%the end.
\beforeverb
\begin{verbatim}
numlist = list()
while ( True ) :
inp = raw_input('Digite um número: ')
if inp == 'done' : break
value = float(inp)
numlist.append(value)
average = sum(numlist) / len(numlist)
print 'Média:', average
\end{verbatim}
\afterverb
%\beforeverb
%\begin{verbatim}
%numlist = list()
%while ( True ) :
% inp = raw_input('Enter a number: ')
% if inp == 'done' : break
% value = float(inp)
% numlist.append(value)
%
%average = sum(numlist) / len(numlist)
%print 'Average:', average
%\end{verbatim}
%\afterverb
%
Nós criamos uma lista vazia antes do loop iniciar, e então sempre que tivermos
um número, este será adicionado na lista. Ao final do programa, calcularemos
a soma dos números da lista e dividiremos o total pela contagem de números na lista para chegar
a média.
% We make an empty list before the loop starts, and then each time we have
% a number, we append it to the list. At the end of
% the program, we simply compute the sum of the numbers in the
% list and divide it by the count of the numbers in the
% list to come up with the average.
\section{Listas e strings}
%\section{Lists and strings}
\index{lista}
\index{string}
\index{sequência}
%\index{list}
%\index{string}
%\index{sequence}
Uma string é uma sequência de caracteres e uma lista é uma sequência de valores,
porém, uma lista de caracteres não é o mesmo que uma string. Para converter uma
string para lista de caracteres você pode usar {\tt list}:
% A string is a sequence of characters and a list is a sequence
% of values, but a list of characters is not the same as a
% string. To convert from a string to a list of characters,
% you can use {\tt list}:
\index{list!function}
\index{function!list}
%\index{list!function}
%\index{function!list}
\beforeverb
\begin{verbatim}
>>> s = 'spam'
>>> t = list(s)
>>> print t
['s', 'p', 'a', 'm']
\end{verbatim}
\afterverb
%\beforeverb
%\begin{verbatim}
%>>> s = 'spam'
%>>> t = list(s)
%>>> print t
%['s', 'p', 'a', 'm']
%\end{verbatim}
%\afterverb
%
Em razão de {\tt list} ser o nome de uma função built-in, você deve evitar
usar isto como nome de variável. Eu também evito a letra {\tt l} pois se parece muito
com o número {\tt 1}. Por essa razão utilizo {\tt t}.
% Because {\tt list} is the name of a built-in function, you should
% avoid using it as a variable name. I also avoid the letter {\tt l} because
% it looks too much like the number {\tt 1}. So that's why I use {\tt t}.
A função {\tt list} quebra uma string em letras individuais. Se você deseja quebrar
uma string em palavras, você deve usar o método {\tt split}.
% The {\tt list} function breaks a string into individual letters. If
% you want to break a string into words, you can use the {\tt split}
% method:
\index{método split}
\index{método!split}
%\index{split method}
%\index{method!split}
\beforeverb
\begin{verbatim}
>>> s = 'pining for the fjords'
>>> t = s.split()
>>> print t
['pining', 'for', 'the', 'fjords']
>>> print t[2]
the
\end{verbatim}
\afterverb
%\beforeverb
%\begin{verbatim}
%>>> s = 'pining for the fjords'
%>>> t = s.split()
%>>> print t
%['pining', 'for', 'the', 'fjords']
%>>> print t[2]
%the
%\end{verbatim}
%\afterverb