@@ -424,43 +424,55 @@ msgstr ""
424424"<shallow_vs_deep_copy>` listy::"
425425
426426msgid "Lists also support operations like concatenation::"
427- msgstr ""
427+ msgstr "Listy wspierają też operacje takie jak konkatenacja:: "
428428
429429msgid ""
430430"Unlike strings, which are :term:`immutable`, lists are a :term:`mutable` "
431431"type, i.e. it is possible to change their content::"
432432msgstr ""
433+ "W przeciwieństwie do ciągów znaków, które są :term:`niemutowalne "
434+ "<immutable>`, listy są typem :term:`mutowalnym <mutable>`, w szczególności "
435+ "można zmieniać ich treść::"
433436
434437msgid ""
435438"You can also add new items at the end of the list, by using the :meth:`~list."
436439"append` *method* (we will see more about methods later)::"
437440msgstr ""
441+ "Można również dodawać nowe elementy na końcu listy, przez użycie *metody* "
442+ "(dowiemy się więcej o metodach później) :meth:`~list.append`::"
438443
439444msgid ""
440445"Assignment to slices is also possible, and this can even change the size of "
441446"the list or clear it entirely::"
442447msgstr ""
448+ "Możliwe jest również przypisywanie do slice'ów. Może to zmienić rozmiar "
449+ "listy lub zupełnie ją wyczyścić::"
443450
444451msgid "The built-in function :func:`len` also applies to lists::"
445- msgstr ""
452+ msgstr "Wbudowana funkcja :func:`len` ma również zastosowanie do list:: "
446453
447454msgid ""
448455"It is possible to nest lists (create lists containing other lists), for "
449456"example::"
450457msgstr ""
458+ "Można zagnieżdżać listy (tworzyć listy zawierające inne listy), na przykład::"
451459
452460msgid "First Steps Towards Programming"
453- msgstr ""
461+ msgstr "Pierwsze kroki do programowania "
454462
455463msgid ""
456464"Of course, we can use Python for more complicated tasks than adding two and "
457465"two together. For instance, we can write an initial sub-sequence of the "
458466"`Fibonacci series <https://en.wikipedia.org/wiki/Fibonacci_number>`_ as "
459467"follows::"
460468msgstr ""
469+ "Oczywiście możemy używać Pythona do zadań bardziej skomplikowanych niż "
470+ "dodawanie dwóch do dwóch. Na przykład możemy napisać początkowy podciąg "
471+ "`ciągu Fibonacciego <https://pl.wikipedia.org/wiki/Ci%C4%85g_Fibonacciego>`_ "
472+ "następująco::"
461473
462474msgid "This example introduces several new features."
463- msgstr ""
475+ msgstr "Ten przykład wprowadza kilka nowych funkcji. "
464476
465477msgid ""
466478"The first line contains a *multiple assignment*: the variables ``a`` and "
@@ -469,6 +481,11 @@ msgid ""
469481"all evaluated first before any of the assignments take place. The right-"
470482"hand side expressions are evaluated from the left to the right."
471483msgstr ""
484+ "Pierwsza linia zawiera *wielokrotne przypisanie*: zmienne ``a`` i ``b`` "
485+ "jednocześnie dostają nowe wartości 0 i 1. W ostatniej linii jest ponownie "
486+ "wykorzystane, demonstrując, że wyrażenia po prawej stronie są ewaluowane "
487+ "wcześniej, zanim którekolwiek z przypisań ma miejsce. Wyrażenia po prawej "
488+ "stronie są ewaluowane od lewej do prawej."
472489
473490msgid ""
474491"The :keyword:`while` loop executes as long as the condition (here: ``a < "
@@ -480,6 +497,15 @@ msgid ""
480497"than), ``>`` (greater than), ``==`` (equal to), ``<=`` (less than or equal "
481498"to), ``>=`` (greater than or equal to) and ``!=`` (not equal to)."
482499msgstr ""
500+ "Pętla :keyword:`while` wykonuje się dopóki warunek (tutaj: ``a < 10``) "
501+ "pozostaje prawdziwy. W Pythonie, tak jak w C, każda niezerowa liczba "
502+ "całkowita jest prawdziwa; zero jest fałszywe. Warunek może być również "
503+ "ciągiem znaków lub listą, tak naprawdę jakąkolwiek sekwencją; cokolwiek o "
504+ "niezerowej długości jest prawdziwe, puste sekwencje są fałszywe. Warunek "
505+ "użyty w przykładzie jest prostym porównaniem. Standardowe operatory porównań "
506+ "pisane są tak samo jak w C: ``<`` (mniejsze niż), ``>`` (większe niż), "
507+ "``==`` (równe), ``<=`` (mniejsze lub równe), ``>=`` (większe lub równe) i ``!"
508+ "=`` (różne)."
483509
484510msgid ""
485511"The *body* of the loop is *indented*: indentation is Python's way of "
0 commit comments