@@ -532,34 +532,46 @@ msgid ""
532532"In addition, dict comprehensions can be used to create dictionaries from "
533533"arbitrary key and value expressions::"
534534msgstr ""
535+ "Dodatkowo można użyć wyrażeń słownikowych to tworzenia słowników z podanych "
536+ "wyrażeń klucza i wartości::"
535537
536538msgid ""
537539"When the keys are simple strings, it is sometimes easier to specify pairs "
538540"using keyword arguments::"
539541msgstr ""
542+ "Kiedy klucze są prostymi ciągami znaków, czasem łatwiej jest podać pary "
543+ "używając argumentów nazwanych::"
540544
541545msgid "Looping Techniques"
542- msgstr ""
546+ msgstr "Techniki pętli "
543547
544548msgid ""
545549"When looping through dictionaries, the key and corresponding value can be "
546550"retrieved at the same time using the :meth:`items` method. ::"
547551msgstr ""
552+ "Podczas iterowania po słownikach, klucz i odpowiadającą mu wartość można "
553+ "pobrać w tym samym czasie używając metody :meth:`items`. ::"
548554
549555msgid ""
550556"When looping through a sequence, the position index and corresponding value "
551557"can be retrieved at the same time using the :func:`enumerate` function. ::"
552558msgstr ""
559+ "Przy iterowaniu po sekwencji, indeks pozycyjny i odpowiadającą mu wartość "
560+ "można pobrać w tym samym czasie używając funkcji :func:`enumerate`. ::"
553561
554562msgid ""
555563"To loop over two or more sequences at the same time, the entries can be "
556564"paired with the :func:`zip` function. ::"
557565msgstr ""
566+ "Aby przeiterować po dwóch lub więcej sekwencjach w tym samym czasie, "
567+ "elementy mogą zostać zgrupowane funkcją :func:`zip`. ::"
558568
559569msgid ""
560570"To loop over a sequence in reverse, first specify the sequence in a forward "
561571"direction and then call the :func:`reversed` function. ::"
562572msgstr ""
573+ "Aby przeiterować po sekwencji od końca, najpierw określ sekwencję w kierunku "
574+ "„do przodu” a następnie wywołaj funkcję :func:`reversed`. ::"
563575
564576msgid ""
565577"To loop over a sequence in sorted order, use the :func:`sorted` function "
0 commit comments