@@ -241,49 +241,66 @@ msgid ""
241241"Note how the order of the :keyword:`for` and :keyword:`if` statements is the "
242242"same in both these snippets."
243243msgstr ""
244+ "Zwróć uwagę, że kolejność instrukcji :keyword:`for` i :keyword:`if` jest "
245+ "taka sama w obu fragmentach kodu."
244246
245247msgid ""
246248"If the expression is a tuple (e.g. the ``(x, y)`` in the previous example), "
247249"it must be parenthesized. ::"
248250msgstr ""
251+ "Jeśli wyrażenie jest krotką (tak jak ``(x, y)`` w poprzednim przykładzie), "
252+ "musi być wzięte w nawias. ::"
249253
250254msgid ""
251255"List comprehensions can contain complex expressions and nested functions::"
252256msgstr ""
257+ "Wyrażenia listowe mogą zawierać złożone wyrażenia i zagnieżdżone funkcje::"
253258
254259msgid "Nested List Comprehensions"
255- msgstr ""
260+ msgstr "Zagnieżdżone wyrażenia listowe "
256261
257262msgid ""
258263"The initial expression in a list comprehension can be any arbitrary "
259264"expression, including another list comprehension."
260265msgstr ""
266+ "Wyrażeniem wyjściowym w wyrażeniu listowym może być każde arbitralne "
267+ "wyrażenie, włączając inne wyrażenie listowe."
261268
262269msgid ""
263270"Consider the following example of a 3x4 matrix implemented as a list of 3 "
264271"lists of length 4::"
265272msgstr ""
273+ "Rozważmy następujący przykład macierzy 3-na-4 zaimplementowanej jako lista "
274+ "trzech list o długości 4::"
266275
267276msgid "The following list comprehension will transpose rows and columns::"
268- msgstr ""
277+ msgstr "Następujące wyrażenie listowe przetransponuje wiersze i kolumny:: "
269278
270279msgid ""
271280"As we saw in the previous section, the nested listcomp is evaluated in the "
272281"context of the :keyword:`for` that follows it, so this example is equivalent "
273282"to::"
274283msgstr ""
284+ "Jak widzieliśmy w poprzedniej sekcji, zagnieżdżone wyrażenie listowe jest "
285+ "ewaluowane w kontekście :keyword:`for`, które po nim następuje, więc ten "
286+ "przykład jest równoważny temu::"
275287
276288msgid "which, in turn, is the same as::"
277- msgstr ""
289+ msgstr "który z kolei jest taki sam jak:: "
278290
279291msgid ""
280292"In the real world, you should prefer built-in functions to complex flow "
281293"statements. The :func:`zip` function would do a great job for this use case::"
282294msgstr ""
295+ "W prawdziwym świecie powinieneś(-nnaś) preferować wbudowane funkcje w "
296+ "złożonych instrukcjach przepływu. Funkcja :func:`zip` bardzo się przyda w "
297+ "tym przypadku::"
283298
284299msgid ""
285300"See :ref:`tut-unpacking-arguments` for details on the asterisk in this line."
286301msgstr ""
302+ "W :ref:`tut-unpacking-arguments` znajdziesz wyjaśnienie znaku gwiazdki w tej "
303+ "linii."
287304
288305msgid "The :keyword:`!del` statement"
289306msgstr ""
0 commit comments