"Language-Team: Persian (https://github.com/python/python-docs-fa/)\n"
"Language: fa\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Generator: Poedit 3.6\n"
msgid"Data Structures"
msgstr"ساختمان دادهها"
msgid"This chapter describes some things you've learned about already in more detail, and adds some new things as well."
msgstr"این فصل برخی از مواردی را که تاکنون یاد گرفتهاید با جزئیات بیشتری توضیح میدهد و همچنین چند مورد جدید نیز اضافه میکند."
msgid"More on Lists"
msgstr"بیشتر دربارهی فهرستها"
msgid"The :ref:`list <typesseq-list>` data type has some more methods. Here are all of the methods of list objects:"
msgstr"نوع دادهٔ :ref:`list <typesseq-list>` چند متد دیگر نیز دارد. در اینجا تمام متدهای اشیای list آمدهاند:"
msgid"Add an item to the end of the list. Similar to ``a[len(a):] = [x]``."
msgstr"یک آیتم را به انتهای فهرست اضافه میکند. مشابه ``a[len(a):] = [x]`` است."
msgid"Extend the list by appending all the items from the iterable. Similar to ``a[len(a):] = iterable``."
msgstr"فهرست را با افزودن تمام آیتمهای شیء تکرارپذیر گسترش میدهد. مشابه ``a[len(a):] = iterable`` است."
msgid"Insert an item at a given position. The first argument is the index of the element before which to insert, so ``a.insert(0, x)`` inserts at the front of the list, and ``a.insert(len(a), x)`` is equivalent to ``a.append(x)``."
msgstr"یک آیتم را در موقعیت مشخصی درج میکند. اولین آرگومان، اندیس عنصری است که آیتم باید پیش از آن درج شود؛ بنابراین ``a.insert(0, x)`` آیتم را در ابتدای فهرست درج میکند و ``a.insert(len(a), x)`` معادل ``a.append(x)`` است."
msgid"Remove the first item from the list whose value is equal to *value*. It raises a :exc:`ValueError` if there is no such item."
msgstr"اولین آیتم از فهرست را که مقدار آن برابر با *value* است حذف میکند. اگر چنین آیتمی وجود نداشته باشد، یک :exc:`ValueError` پرتاب میکند."
msgid"Remove the item at the given position in the list, and return it. If no index is specified, ``a.pop()`` removes and returns the last item in the list. It raises an :exc:`IndexError` if the list is empty or the index is outside the list range."
msgstr"آیتم موجود در موقعیت مشخصشده از فهرست را حذف میکند و آن را برمیگرداند. اگر هیچ اندیسی مشخص نشده باشد، ``a.pop()`` آخرین آیتم فهرست را حذف کرده و برمیگرداند. اگر فهرست خالی باشد یا اندیس خارج از محدودهٔ فهرست باشد، یک :exc:`IndexError` پرتاب میکند."
msgid"Remove all items from the list. Similar to ``del a[:]``."
msgstr"تمام آیتمهای فهرست را حذف میکند. مشابه ``del a[:]`` است."
msgid"Return zero-based index of the first occurrence of *value* in the list. Raises a :exc:`ValueError` if there is no such item."
msgstr"اندیس مبتنی بر صفرِ اولین رخداد *value* در فهرست را برمیگرداند. اگر چنین آیتمی وجود نداشته باشد، یک :exc:`ValueError` پرتاب میکند."
msgid"The optional arguments *start* and *end* are interpreted as in the slice notation and are used to limit the search to a particular subsequence of the list. The returned index is computed relative to the beginning of the full sequence rather than the *start* argument."
msgstr"آرگومانهای اختیاری *start* و *end* مانند نشانهگذاری برش تفسیر میشوند و برای محدود کردن جستوجو به یک زیردنبالهٔ مشخص از فهرست استفاده میشوند. اندیس بازگرداندهشده نسبت به ابتدای دنبالهٔ کامل محاسبه میشود، نه نسبت به آرگومان *start*."
msgid"Return the number of times *value* appears in the list."
msgstr"تعداد دفعاتی که *value* در فهرست ظاهر میشود را برمیگرداند."
msgid"Sort the items of the list in place (the arguments can be used for sort customization, see :func:`sorted` for their explanation)."
msgstr"آیتمهای فهرست را در جای خود مرتب میکند (آرگومانها میتوانند برای سفارشیسازی مرتبسازی استفاده شوند؛ برای توضیح آنها به :func:`sorted` مراجعه کنید)."
msgid"Reverse the elements of the list in place."
msgstr"عناصر فهرست را در جای خود معکوس میکند."
msgid"Return a shallow copy of the list. Similar to ``a[:]``."
msgstr"یک کپی سطحی از فهرست را برمیگرداند. مشابه ``a[:]`` است."
msgid"An example that uses most of the list methods::"
msgstr"مثالی که از بیشتر متدهای فهرست استفاده میکند::"
msgid"You might have noticed that methods like ``insert``, ``remove`` or ``sort`` that only modify the list have no return value printed -- they return the default ``None``. [#]_ This is a design principle for all mutable data structures in Python."
msgstr"ممکن است متوجه شده باشید که متدهایی مانند ``insert``، ``remove`` یا ``sort`` که فقط فهرست را تغییر میدهند، هیچ مقدار بازگشتی چاپشدهای ندارند -- آنها مقدار پیشفرض ``None`` را برمیگردانند. [#]_ این یک اصل طراحی برای تمام ساختارهای دادهٔ تغییرپذیر در پایتون است."
msgid"Another thing you might notice is that not all data can be sorted or compared. For instance, ``[None, 'hello', 10]`` doesn't sort because integers can't be compared to strings and ``None`` can't be compared to other types. Also, there are some types that don't have a defined ordering relation. For example, ``3+4j < 5+7j`` isn't a valid comparison."
msgstr"چیز دیگری که ممکن است متوجه شوید این است که همهٔ دادهها قابل مرتبسازی یا مقایسه نیستند. برای مثال، ``[None, 'hello', 10]`` مرتب نمیشود، زیرا اعداد صحیح را نمیتوان با رشتهها مقایسه کرد و ``None`` نیز با نوعهای دیگر قابل مقایسه نیست. همچنین برخی نوعها وجود دارند که رابطهٔ ترتیب تعریفشدهای ندارند. برای مثال، مقایسهٔ ``3+4j < 5+7j`` معتبر نیست."
msgid"Using Lists as Stacks"
msgstr"استفاده از فهرستها بهعنوان پشتهها"
msgid"The list methods make it very easy to use a list as a stack, where the last element added is the first element retrieved (\"last-in, first-out\"). To add an item to the top of the stack, use :meth:`~list.append`. To retrieve an item from the top of the stack, use :meth:`~list.pop` without an explicit index. For example::"
msgstr"متدهای فهرست استفاده از یک فهرست بهعنوان پشته را بسیار آسان میکنند؛ جایی که آخرین عنصری که اضافه میشود، اولین عنصری است که دریافت میشود («آخرین ورودی، اولین خروجی»). برای افزودن یک آیتم به بالای پشته، از :meth:`~list.append` استفاده کنید. برای دریافت یک آیتم از بالای پشته، از :meth:`~list.pop` بدون یک اندیس صریح استفاده کنید. برای مثال::"
msgid""
">>> stack = [3, 4, 5]\n"
">>> stack.append(6)\n"
">>> stack.append(7)\n"
">>> stack\n"
"[3, 4, 5, 6, 7]\n"
">>> stack.pop()\n"
"7\n"
">>> stack\n"
"[3, 4, 5, 6]\n"
">>> stack.pop()\n"
"6\n"
">>> stack.pop()\n"
"5\n"
">>> stack\n"
"[3, 4]"
msgstr""
">>> stack = [3, 4, 5]\n"
">>> stack.append(6)\n"
">>> stack.append(7)\n"
">>> stack\n"
"[3, 4, 5, 6, 7]\n"
">>> stack.pop()\n"
"7\n"
">>> stack\n"
"[3, 4, 5, 6]\n"
">>> stack.pop()\n"
"6\n"
">>> stack.pop()\n"
"5\n"
">>> stack\n"
"[3, 4]"
msgid"Using Lists as Queues"
msgstr"استفاده از فهرستها بهعنوان صف"
msgid"It is also possible to use a list as a queue, where the first element added is the first element retrieved (\"first-in, first-out\"); however, lists are not efficient for this purpose. While appends and pops from the end of list are fast, doing inserts or pops from the beginning of a list is slow (because all of the other elements have to be shifted by one)."
msgstr"همچنین میتوان از یک فهرست بهعنوان صف استفاده کرد؛ جایی که اولین عنصری که اضافه میشود، اولین عنصری است که دریافت میشود («اولین ورودی، اولین خروجی»). بااینحال، فهرستها برای این منظور کارایی مناسبی ندارند. در حالی که افزودن و حذف از انتهای فهرست سریع است، انجام درج یا حذف از ابتدای فهرست کند است (زیرا تمام عناصر دیگر باید یک موقعیت جابهجا شوند)."
msgid"To implement a queue, use :class:`collections.deque` which was designed to have fast appends and pops from both ends. For example::"
msgstr"برای پیادهسازی صف، از :class:`collections.deque` استفاده کنید که برای داشتن افزودن و حذف سریع از هر دو انتها طراحی شده است. برای مثال::"
">>> queue.append(\"Terry\") # تری از راه میرسد\n"
">>> queue.append(\"Graham\") # گراهام از راه میرسد\n"
">>> queue.popleft() # اولین کسی که آمده حالا میرود\n"
"'Eric'\n"
">>> queue.popleft() # یکی مانده به آخرین کسی که آمده حالا میرود\n"
"'John'\n"
">>> queue # باقی مانده صف به ترتیب آمدن\n"
"deque(['Michael', 'Terry', 'Graham'])"
msgid"List Comprehensions"
msgstr"درکهای فهرستی"
msgid"List comprehensions provide a concise way to create lists. Common applications are to make new lists where each element is the result of some operations applied to each member of another sequence or iterable, or to create a subsequence of those elements that satisfy a certain condition."
msgstr"درکهای فهرستی روشی کوتاه و مختصر برای ایجاد فهرستها فراهم میکنند. کاربردهای رایج آنها ایجاد فهرستهای جدیدی است که در آنها هر عنصر، نتیجهٔ انجام برخی عملیات روی هر عضو از یک دنباله یا شیء تکرارپذیر دیگر است، یا ایجاد یک زیردنباله از عناصری که یک شرط مشخص را برآورده میکنند."
msgid"For example, assume we want to create a list of squares, like::"
msgstr"برای مثال، فرض کنید میخواهیم فهرستی از مربعها ایجاد کنیم، مانند::"
msgid""
">>> squares = []\n"
">>> for x in range(10):\n"
"... squares.append(x**2)\n"
"...\n"
">>> squares\n"
"[0, 1, 4, 9, 16, 25, 36, 49, 64, 81]"
msgstr""
">>> squares = []\n"
">>> for x in range(10):\n"
"... squares.append(x**2)\n"
"...\n"
">>> squares\n"
"[0, 1, 4, 9, 16, 25, 36, 49, 64, 81]"
msgid"Note that this creates (or overwrites) a variable named ``x`` that still exists after the loop completes. We can calculate the list of squares without any side effects using::"
msgstr"توجه کنید که این کار یک متغیر با نام ``x`` ایجاد میکند (یا مقدار آن را بازنویسی میکند) که پس از پایان حلقه نیز همچنان وجود دارد. میتوانیم فهرست مربعها را بدون هیچ اثر جانبی با استفاده از روش زیر محاسبه کنیم::"
msgid"A list comprehension consists of brackets containing an expression followed by a :keyword:`!for` clause, then zero or more :keyword:`!for` or :keyword:`!if` clauses. The result will be a new list resulting from evaluating the expression in the context of the :keyword:`!for` and :keyword:`!if` clauses which follow it. For example, this listcomp combines the elements of two lists if they are not equal::"
msgstr"یک درک فهرستی شامل کروشههایی است که یک عبارت را در خود دارند و پس از آن یک بند :keyword:`!for` و سپس صفر یا چند بند :keyword:`!for` یا :keyword:`!if` قرار میگیرد. نتیجه، یک فهرست جدید خواهد بود که از ارزیابی عبارت در زمینهٔ بندهای :keyword:`!for` و :keyword:`!if` پس از آن بهدست میآید. برای مثال، این درک فهرستی عناصر دو فهرست را در صورتی که برابر نباشند با یکدیگر ترکیب میکند::"
msgid""
">>> [(x, y) for x in [1,2,3] for y in [3,1,4] if x != y]\n"
">>> # تاپل باید داخل پرانتز قرار بگیرد، در غیر این صورت خطا ایجاد میشود\n"
">>> [x, x**2 for x in range(6)]\n"
" File \"<stdin>\", line 1\n"
" [x, x**2 for x in range(6)]\n"
" ^^^^^^^\n"
"SyntaxError: did you forget parentheses around the comprehension target?\n"
">>> # تخت کردن یک فهرست با استفاده از listcomp و دو حلقهی for\n"
">>> vec = [[1,2,3], [4,5,6], [7,8,9]]\n"
">>> [num for elem in vec for num in elem]\n"
"[1, 2, 3, 4, 5, 6, 7, 8, 9]"
msgid"List comprehensions can contain complex expressions and nested functions::"
msgstr"درکهای فهرستی میتوانند شامل عبارتهای پیچیده و تابعهای تودرتو باشند::"
msgid""
">>> from math import pi\n"
">>> [str(round(pi, i)) for i in range(1, 6)]\n"
"['3.1', '3.14', '3.142', '3.1416', '3.14159']"
msgstr""
">>> from math import pi\n"
">>> [str(round(pi, i)) for i in range(1, 6)]\n"
"['3.1', '3.14', '3.142', '3.1416', '3.14159']"
msgid"Nested List Comprehensions"
msgstr"درکهای فهرستی تودرتو"
msgid"The initial expression in a list comprehension can be any arbitrary expression, including another list comprehension."
msgstr"عبارت اولیه در یک درک فهرستی میتواند هر عبارت دلخواهی باشد، از جمله یک درک فهرستی دیگر."
msgid"Consider the following example of a 3x4 matrix implemented as a list of 3 lists of length 4::"
msgstr"مثال زیر را در نظر بگیرید که یک ماتریس 3x4 را بهصورت یک فهرست شامل 3 فهرست با طول 4 پیادهسازی میکند::"
msgid""
">>> matrix = [\n"
"... [1, 2, 3, 4],\n"
"... [5, 6, 7, 8],\n"
"... [9, 10, 11, 12],\n"
"... ]"
msgstr""
">>> matrix = [\n"
"... [1, 2, 3, 4],\n"
"... [5, 6, 7, 8],\n"
"... [9, 10, 11, 12],\n"
"... ]"
msgid"The following list comprehension will transpose rows and columns::"
msgstr"درک فهرستی زیر سطرها و ستونها را جابهجا میکند::"
msgid""
">>> [[row[i] for row in matrix] for i in range(4)]\n"
"[[1, 5, 9], [2, 6, 10], [3, 7, 11], [4, 8, 12]]"
msgstr""
">>> [[row[i] for row in matrix] for i in range(4)]\n"
"[[1, 5, 9], [2, 6, 10], [3, 7, 11], [4, 8, 12]]"
msgid"As we saw in the previous section, the inner list comprehension is evaluated in the context of the :keyword:`for` that follows it, so this example is equivalent to::"
msgstr"همانطور که در بخش قبل دیدیم، درک فهرستی داخلی در زمینهٔ :keyword:`for` که پس از آن قرار گرفته است ارزیابی میشود؛ بنابراین این مثال معادل است با::"
msgid""
">>> transposed = []\n"
">>> for i in range(4):\n"
"... transposed.append([row[i] for row in matrix])\n"
"...\n"
">>> transposed\n"
"[[1, 5, 9], [2, 6, 10], [3, 7, 11], [4, 8, 12]]"
msgstr""
">>> transposed = []\n"
">>> for i in range(4):\n"
"... transposed.append([row[i] for row in matrix])\n"
"...\n"
">>> transposed\n"
"[[1, 5, 9], [2, 6, 10], [3, 7, 11], [4, 8, 12]]"
msgid"which, in turn, is the same as::"
msgstr"که به نوبهٔ خود، همانند این است::"
msgid""
">>> transposed = []\n"
">>> for i in range(4):\n"
"... # the following 3 lines implement the nested listcomp\n"
"... transposed_row = []\n"
"... for row in matrix:\n"
"... transposed_row.append(row[i])\n"
"... transposed.append(transposed_row)\n"
"...\n"
">>> transposed\n"
"[[1, 5, 9], [2, 6, 10], [3, 7, 11], [4, 8, 12]]"
msgstr""
">>> transposed = []\n"
">>> for i in range(4):\n"
"... # سه خط بعدی، پیادهسازی list comprehension تو در تو را انجام میدهند\n"
"... transposed_row = []\n"
"... for row in matrix:\n"
"... transposed_row.append(row[i])\n"
"... transposed.append(transposed_row)\n"
"...\n"
">>> transposed\n"
"[[1, 5, 9], [2, 6, 10], [3, 7, 11], [4, 8, 12]]"
msgid"In the real world, you should prefer built-in functions to complex flow statements. The :func:`zip` function would do a great job for this use case::"
msgstr"در دنیای واقعی، بهتر است از تابعهای توکار بهجای دستورهای جریان کنترل پیچیده استفاده کنید. تابع :func:`zip` برای این مورد کاربرد بسیار خوبی دارد::"
msgid""
">>> list(zip(*matrix))\n"
"[(1, 5, 9), (2, 6, 10), (3, 7, 11), (4, 8, 12)]"
msgstr""
">>> list(zip(*matrix))\n"
"[(1, 5, 9), (2, 6, 10), (3, 7, 11), (4, 8, 12)]"
msgid"See :ref:`tut-unpacking-arguments` for details on the asterisk in this line."
msgstr"برای جزئیات دربارهٔ ستاره در این خط، به :ref:`tut-unpacking-arguments` مراجعه کنید."
msgid"The :keyword:`!del` statement"
msgstr"دستور :keyword:`!del`"
msgid"There is a way to remove an item from a list given its index instead of its value: the :keyword:`del` statement. This differs from the :meth:`~list.pop` method which returns a value. The :keyword:`!del` statement can also be used to remove slices from a list or clear the entire list (which we did earlier by assignment of an empty list to the slice). For example::"
msgstr"روشی برای حذف یک آیتم از فهرست با استفاده از اندیس آن بهجای مقدار آن وجود دارد: دستور :keyword:`del`. این دستور با متد :meth:`~list.pop` که یک مقدار برمیگرداند تفاوت دارد. دستور :keyword:`!del` همچنین میتواند برای حذف برشهایی از یک فهرست یا خالی کردن کامل فهرست استفاده شود (که پیشتر با انتساب یک فهرست خالی به برش انجام دادیم). برای مثال::"
msgid""
">>> a = [-1, 1, 66.25, 333, 333, 1234.5]\n"
">>> del a[0]\n"
">>> a\n"
"[1, 66.25, 333, 333, 1234.5]\n"
">>> del a[2:4]\n"
">>> a\n"
"[1, 66.25, 1234.5]\n"
">>> del a[:]\n"
">>> a\n"
"[]"
msgstr""
">>> a = [-1, 1, 66.25, 333, 333, 1234.5]\n"
">>> del a[0]\n"
">>> a\n"
"[1, 66.25, 333, 333, 1234.5]\n"
">>> del a[2:4]\n"
">>> a\n"
"[1, 66.25, 1234.5]\n"
">>> del a[:]\n"
">>> a\n"
"[]"
msgid":keyword:`del` can also be used to delete entire variables::"
msgstr":keyword:`del` همچنین میتواند برای حذف کامل متغیرها استفاده شود::"
msgid">>> del a"
msgstr">>> del a"
msgid"Referencing the name ``a`` hereafter is an error (at least until another value is assigned to it). We'll find other uses for :keyword:`del` later."
msgstr"ارجاع دادن به نام ``a`` پس از این نقطه یک خطا است (حداقل تا زمانی که مقدار دیگری به آن اختصاص داده شود). بعداً کاربردهای دیگری برای :keyword:`del` خواهیم یافت."
msgid"Tuples and Sequences"
msgstr"تاپلها و دنبالهها"
msgid"We saw that lists and strings have many common properties, such as indexing and slicing operations. They are two examples of *sequence* data types (see :ref:`typesseq`). Since Python is an evolving language, other sequence data types may be added. There is also another standard sequence data type: the *tuple*."
msgstr"دیدیم که فهرستها و رشتهها ویژگیهای مشترک بسیاری مانند عملیات اندیسگذاری و برش دارند. آنها دو نمونه از نوعهای دادهٔ *دنبالهای* (به :ref:`typesseq` مراجعه کنید) هستند. از آنجا که پایتون زبانی در حال تکامل است، ممکن است نوعهای دادهٔ دنبالهای دیگری نیز به آن افزوده شوند. همچنین یک نوع دادهٔ دنبالهای استاندارد دیگر وجود دارد: *تاپل*."
msgid"A tuple consists of a number of values separated by commas, for instance::"
msgstr"یک تاپل از تعدادی مقدار تشکیل شده است که با ویرگول از هم جدا شدهاند، برای مثال::"
msgid""
">>> t = 12345, 54321, 'hello!'\n"
">>> t[0]\n"
"12345\n"
">>> t\n"
"(12345, 54321, 'hello!')\n"
">>> # Tuples may be nested:\n"
">>> u = t, (1, 2, 3, 4, 5)\n"
">>> u\n"
"((12345, 54321, 'hello!'), (1, 2, 3, 4, 5))\n"
">>> # Tuples are immutable:\n"
">>> t[0] = 88888\n"
"Traceback (most recent call last):\n"
" File \"<stdin>\", line 1, in <module>\n"
"TypeError: 'tuple' object does not support item assignment\n"
">>> # but they can contain mutable objects:\n"
">>> v = ([1, 2, 3], [3, 2, 1])\n"
">>> v\n"
"([1, 2, 3], [3, 2, 1])"
msgstr""
">>> t = 12345, 54321, 'hello!'\n"
">>> t[0]\n"
"12345\n"
">>> t\n"
"(12345, 54321, 'hello!')\n"
">>> # تاپلها میتوانند تو در تو باشند:\n"
">>> u = t, (1, 2, 3, 4, 5)\n"
">>> u\n"
"((12345, 54321, 'hello!'), (1, 2, 3, 4, 5))\n"
">>> # تاپلها تغییرناپذیر هستند:\n"
">>> t[0] = 88888\n"
"Traceback (most recent call last):\n"
" File \"<stdin>\", line 1, in <module>\n"
"TypeError: 'tuple' object does not support item assignment\n"
">>> # اما میتوانند شامل اشیای تغییرپذیر باشند:\n"
">>> v = ([1, 2, 3], [3, 2, 1])\n"
">>> v\n"
"([1, 2, 3], [3, 2, 1])"
msgid"As you see, on output tuples are always enclosed in parentheses, so that nested tuples are interpreted correctly; they may be input with or without surrounding parentheses, although often parentheses are necessary anyway (if the tuple is part of a larger expression). It is not possible to assign to the individual items of a tuple, however it is possible to create tuples which contain mutable objects, such as lists."
msgstr"همانطور که میبینید، در خروجی تاپلها همیشه درون پرانتز قرار میگیرند تا تاپلهای تودرتو بهدرستی تفسیر شوند؛ آنها میتوانند با یا بدون پرانتزهای اطرافشان وارد شوند، اگرچه اغلب پرانتزها به هر حال لازم هستند (اگر تاپل بخشی از یک عبارت بزرگتر باشد). امکان انتساب به آیتمهای جداگانهٔ یک تاپل وجود ندارد، بااینحال میتوان تاپلهایی ایجاد کرد که شامل اشیای تغییرپذیر، مانند فهرستها، باشند."
msgid"Though tuples may seem similar to lists, they are often used in different situations and for different purposes. Tuples are :term:`immutable`, and usually contain a heterogeneous sequence of elements that are accessed via unpacking (see later in this section) or indexing (or even by attribute in the case of :func:`namedtuples <collections.namedtuple>`). Lists are :term:`mutable`, and their elements are usually homogeneous and are accessed by iterating over the list."
msgstr"اگرچه تاپلها ممکن است شبیه فهرستها به نظر برسند، اغلب در موقعیتها و برای اهداف متفاوتی استفاده میشوند. تاپلها :term:`تغییرناپذیر <immutable>` هستند و معمولاً شامل یک دنبالهٔ ناهمگن از عناصر هستند که از طریق واگشایی (در ادامهٔ این بخش توضیح داده میشود) یا اندیسگذاری (یا حتی از طریق ویژگیها در مورد :func:`namedtuples <collections.namedtuple>`) به آنها دسترسی پیدا میشود. فهرستها :term:`تغییرپذیر <mutable>` هستند و عناصر آنها معمولاً همگن هستند و با پیمایش روی فهرست به آنها دسترسی پیدا میشود."
msgid"A special problem is the construction of tuples containing 0 or 1 items: the syntax has some extra quirks to accommodate these. Empty tuples are constructed by an empty pair of parentheses; a tuple with one item is constructed by following a value with a comma (it is not sufficient to enclose a single value in parentheses). Ugly, but effective. For example::"
msgstr"یک مسئلهٔ ویژه، ساخت تاپلهایی است که شامل 0 یا 1 آیتم هستند: نحو زبان برای سازگاری با این موارد چند نکتهٔ خاص دارد. تاپلهای خالی با یک جفت پرانتز خالی ساخته میشوند؛ یک تاپل با یک آیتم با قرار دادن یک ویرگول پس از یک مقدار ساخته میشود (قرار دادن یک مقدار تنها درون پرانتز کافی نیست). زشت، اما مؤثر. برای مثال::"
">>> singleton = 'hello', # <-- به وجود کامای انتهایی توجه کنید\n"
">>> len(empty)\n"
"0\n"
">>> len(singleton)\n"
"1\n"
">>> singleton\n"
"('hello',)"
msgid"The statement ``t = 12345, 54321, 'hello!'`` is an example of *tuple packing*: the values ``12345``, ``54321`` and ``'hello!'`` are packed together in a tuple. The reverse operation is also possible::"
msgstr"دستور ``t = 12345, 54321, 'hello!'`` نمونهای از *بستهبندی تاپل* (*tuple packing*) است: مقدارهای ``12345``، ``54321`` و ``'hello!'`` در یک تاپل بستهبندی میشوند. عملیات معکوس نیز امکانپذیر است::"
msgid">>> x, y, z = t"
msgstr">>> x, y, z = t"
msgid"This is called, appropriately enough, *sequence unpacking* and works for any sequence on the right-hand side. Sequence unpacking requires that there are as many variables on the left side of the equals sign as there are elements in the sequence. Note that multiple assignment is really just a combination of tuple packing and sequence unpacking."
msgstr"این عملیات، بهدرستی، *واگشایی دنباله* (*sequence unpacking*) نامیده میشود و برای هر دنبالهای در سمت راست کار میکند. واگشایی دنباله نیاز دارد که در سمت چپ علامت مساوی به همان تعداد عناصر موجود در دنباله، متغیر وجود داشته باشد. توجه کنید که انتساب چندگانه در واقع ترکیبی از بستهبندی تاپل و واگشایی دنباله است."
msgid"Sets"
msgstr"مجموعهها"
msgid"Python also includes a data type for :ref:`sets <types-set>`. A set is an unordered collection with no duplicate elements. Basic uses include membership testing and eliminating duplicate entries. Set objects also support mathematical operations like union, intersection, difference, and symmetric difference."
msgstr"پایتون همچنین یک نوع داده برای :ref:`set <types-set>` دارد. یک مجموعه، مجموعهای نامرتب از عناصر بدون مقدارهای تکراری است. کاربردهای پایهٔ آن شامل بررسی عضویت و حذف ورودیهای تکراری است. اشیای مجموعه همچنین از عملیات ریاضی مانند اجتماع، اشتراک، تفاضل و تفاضل متقارن پشتیبانی میکنند."
msgid"Curly braces or the :func:`set` function can be used to create sets. Note: to create an empty set you have to use ``set()``, not ``{}``; the latter creates an empty dictionary, a data structure that we discuss in the next section."
msgstr"از آکولادها یا تابع :func:`set` میتوان برای ایجاد مجموعهها استفاده کرد. توجه: برای ایجاد یک مجموعهٔ خالی باید از ``set()`` استفاده کنید، نه ``{}``؛ مورد دوم یک دیکشنری خالی ایجاد میکند، که یک ساختار داده است و در بخش بعدی دربارهٔ آن صحبت میکنیم."
msgid"Because sets are unordered, iterating over them or printing them can produce the elements in a different order than you expect."
msgstr"از آنجا که مجموعهها نامرتب هستند، پیمایش روی آنها یا چاپ کردنشان ممکن است عناصر را با ترتیبی متفاوت از چیزی که انتظار دارید تولید کند."
">>> print(basket) # نشان میدهد که موارد تکراری حذف شدهاند\n"
"{'orange', 'banana', 'pear', 'apple'}\n"
">>> 'orange' in basket # بررسی سریع وجود یک عضو\n"
"True\n"
">>> 'crabgrass' in basket\n"
"False\n"
"\n"
">>> # نمایش عملیات مجموعهها روی حروف یکتای دو کلمه\n"
">>>\n"
">>> a = set('abracadabra')\n"
">>> b = set('alacazam')\n"
">>> a # حروف یکتای موجود در a\n"
"{'a', 'r', 'b', 'c', 'd'}\n"
">>> a - b # حروفی که در a هستند اما در b نیستند\n"
"{'r', 'd', 'b'}\n"
">>> a | b # حروفی که در a یا b یا هر دو وجود دارند\n"
"{'a', 'c', 'r', 'd', 'b', 'm', 'z', 'l'}\n"
">>> a & b # حروفی که هم در a و هم در b وجود دارند\n"
"{'a', 'c'}\n"
">>> a ^ b # حروفی که در a یا b هستند اما در هر دو نیستند\n"
"{'r', 'd', 'b', 'm', 'z', 'l'}"
msgid"Similarly to :ref:`list comprehensions <tut-listcomps>`, set comprehensions are also supported::"
msgstr"مانند :ref:`درکهای فهرستی <tut-listcomps>`، درکهای مجموعه نیز پشتیبانی میشوند::"
msgid""
">>> a = {x for x in 'abracadabra' if x not in 'abc'}\n"
">>> a\n"
"{'r', 'd'}"
msgstr""
">>> a = {x for x in 'abracadabra' if x not in 'abc'}\n"
">>> a\n"
"{'r', 'd'}"
msgid"Dictionaries"
msgstr"دیکشنریها"
msgid"Another useful data type built into Python is the *dictionary* (see :ref:`typesmapping`). Dictionaries are sometimes found in other languages as \"associative memories\" or \"associative arrays\". Unlike sequences, which are indexed by a range of numbers, dictionaries are indexed by *keys*, which can be any immutable type; strings and numbers can always be keys. Tuples can be used as keys if they contain only strings, numbers, or tuples; if a tuple contains any mutable object either directly or indirectly, it cannot be used as a key. You can't use lists as keys, since lists can be modified in place using index assignments, slice assignments, or methods like :meth:`~list.append` and :meth:`~list.extend`."
msgstr "یک نوع دادهٔ مفید دیگر که بهصورت توکار در پایتون وجود دارد، *دیکشنری* است (به :ref:`typesmapping` مراجعه کنید). دیکشنریها در برخی زبانهای دیگر با نام «حافظههای انجمنی» یا «آرایههای انجمنی» شناخته میشوند. برخلاف دنبالهها که با یک بازه از اعداد اندیسگذاری میشوند، دیکشنریها با *کلیدها* اندیسگذاری میشوند؛ کلیدها میتوانند هر نوع تغییرناپذیری باشند؛ رشتهها و اعداد همیشه میتوانند کلید باشند. تاپلها نیز میتوانند بهعنوان کلید استفاده شوند، اگر فقط شامل رشتهها، اعداد یا تاپلها باشند؛ اگر یک تاپل بهصورت مستقیم یا غیرمستقیم شامل یک شیء تغییرپذیر باشد، نمیتوان از آن بهعنوان کلید استفاده کرد. نمیتوانید از فهرستها بهعنوان کلید استفاده کنید، زیرا فهرستها را میتوان با استفاده از انتساب اندیسی، انتساب برش، یا متدهایی مانند :meth:`~list.append` و :meth:`~list.extend` در محل تغییر داد."
msgid"It is best to think of a dictionary as a set of *key: value* pairs, with the requirement that the keys are unique (within one dictionary). A pair of braces creates an empty dictionary: ``{}``. Placing a comma-separated list of key:value pairs within the braces adds initial key:value pairs to the dictionary; this is also the way dictionaries are written on output."
msgstr"بهترین روش این است که یک دیکشنری را بهعنوان مجموعهای از جفتهای *کلید: مقدار* در نظر بگیرید، با این شرط که کلیدها (درون یک دیکشنری) یکتا باشند. یک جفت آکولاد یک دیکشنری خالی ایجاد میکند: ``{}``. قرار دادن یک فهرست جداشده با ویرگول از جفتهای کلید:مقدار درون آکولاد، جفتهای اولیهٔ کلید:مقدار را به دیکشنری اضافه میکند؛ این همان روشی است که دیکشنریها در خروجی نوشته میشوند."
msgid"The main operations on a dictionary are storing a value with some key and extracting the value given the key. It is also possible to delete a key:value pair with ``del``. If you store using a key that is already in use, the old value associated with that key is forgotten."
msgstr"عملیات اصلی روی یک دیکشنری، ذخیره کردن یک مقدار با یک کلید مشخص و استخراج مقدار با استفاده از کلید است. همچنین امکان حذف یک جفت کلید:مقدار با استفاده از ``del`` وجود دارد. اگر مقداری را با کلیدی ذخیره کنید که از قبل استفاده شده است، مقدار قدیمی مرتبط با آن کلید فراموش میشود."
msgid"Extracting a value for a non-existent key by subscripting (``d[key]``) raises a :exc:`KeyError`. To avoid getting this error when trying to access a possibly non-existent key, use the :meth:`~dict.get` method instead, which returns ``None`` (or a specified default value) if the key is not in the dictionary."
msgstr"استخراج مقدار برای یک کلید موجود نیست با استفاده از اندیسگذاری (``d[key]``) یک :exc:`KeyError` پرتاب میکند. برای جلوگیری از دریافت این خطا هنگام تلاش برای دسترسی به کلیدی که ممکن است وجود نداشته باشد، از متد :meth:`~dict.get` استفاده کنید؛ این متد در صورتی که کلید در دیکشنری وجود نداشته باشد، ``None`` (یا یک مقدار پیشفرض مشخصشده) را برمیگرداند."
msgid"Performing ``list(d)`` on a dictionary returns a list of all the keys used in the dictionary, in insertion order (if you want it sorted, just use ``sorted(d)`` instead). To check whether a single key is in the dictionary, use the :keyword:`in` keyword."
msgstr"اجرای ``list(d)`` روی یک دیکشنری، فهرستی از تمام کلیدهای استفادهشده در دیکشنری را با ترتیب درج آنها برمیگرداند (اگر میخواهید مرتب شده باشد، فقط از ``sorted(d)`` استفاده کنید). برای بررسی اینکه یک کلید مشخص در دیکشنری وجود دارد یا نه، از کلیدواژهای :keyword:`in` استفاده کنید."
msgid"Here is a small example using a dictionary::"
msgstr"در اینجا یک مثال کوچک با استفاده از یک دیکشنری آورده شده است::"
msgid""
">>> tel = {'jack': 4098, 'sape': 4139}\n"
">>> tel['guido'] = 4127\n"
">>> tel\n"
"{'jack': 4098, 'sape': 4139, 'guido': 4127}\n"
">>> tel['jack']\n"
"4098\n"
">>> tel['irv']\n"
"Traceback (most recent call last):\n"
" File \"<stdin>\", line 1, in <module>\n"
"KeyError: 'irv'\n"
">>> print(tel.get('irv'))\n"
"None\n"
">>> del tel['sape']\n"
">>> tel['irv'] = 4127\n"
">>> tel\n"
"{'jack': 4098, 'guido': 4127, 'irv': 4127}\n"
">>> list(tel)\n"
"['jack', 'guido', 'irv']\n"
">>> sorted(tel)\n"
"['guido', 'irv', 'jack']\n"
">>> 'guido' in tel\n"
"True\n"
">>> 'jack' not in tel\n"
"False"
msgstr""
">>> tel = {'jack': 4098, 'sape': 4139}\n"
">>> tel['guido'] = 4127\n"
">>> tel\n"
"{'jack': 4098, 'sape': 4139, 'guido': 4127}\n"
">>> tel['jack']\n"
"4098\n"
">>> tel['irv']\n"
"Traceback (most recent call last):\n"
" File \"<stdin>\", line 1, in <module>\n"
"KeyError: 'irv'\n"
">>> print(tel.get('irv'))\n"
"None\n"
">>> del tel['sape']\n"
">>> tel['irv'] = 4127\n"
">>> tel\n"
"{'jack': 4098, 'guido': 4127, 'irv': 4127}\n"
">>> list(tel)\n"
"['jack', 'guido', 'irv']\n"
">>> sorted(tel)\n"
"['guido', 'irv', 'jack']\n"
">>> 'guido' in tel\n"
"True\n"
">>> 'jack' not in tel\n"
"False"
msgid"The :func:`dict` constructor builds dictionaries directly from sequences of key-value pairs::"
msgstr"سازندهٔ :func:`dict` دیکشنریها را مستقیماً از دنبالههایی از جفتهای کلید-مقدار ایجاد میکند::"
msgid"In addition, dict comprehensions can be used to create dictionaries from arbitrary key and value expressions::"
msgstr"علاوه بر این، درکهای دیکشنری میتوانند برای ایجاد دیکشنریها از عبارتهای دلخواه کلید و مقدار استفاده شوند::"
msgid""
">>> {x: x**2 for x in (2, 4, 6)}\n"
"{2: 4, 4: 16, 6: 36}"
msgstr""
">>> {x: x**2 for x in (2, 4, 6)}\n"
"{2: 4, 4: 16, 6: 36}"
msgid"When the keys are simple strings, it is sometimes easier to specify pairs using keyword arguments::"
msgstr"هنگامی که کلیدها رشتههای ساده هستند، گاهی مشخص کردن جفتها با استفاده از آرگومانهای کلیدواژهای آسانتر است::"
msgid""
">>> dict(sape=4139, guido=4127, jack=4098)\n"
"{'sape': 4139, 'guido': 4127, 'jack': 4098}"
msgstr""
">>> dict(sape=4139, guido=4127, jack=4098)\n"
"{'sape': 4139, 'guido': 4127, 'jack': 4098}"
msgid"Looping Techniques"
msgstr"تکنیکهای حلقهزنی"
msgid"When looping through dictionaries, the key and corresponding value can be retrieved at the same time using the :meth:`~dict.items` method. ::"
msgstr"هنگام پیمایش روی دیکشنریها، کلید و مقدار متناظر آن را میتوان بهطور همزمان با استفاده از متد :meth:`~dict.items` دریافت کرد. ::"
msgid""
">>> knights = {'gallahad': 'the pure', 'robin': 'the brave'}\n"
">>> for k, v in knights.items():\n"
"... print(k, v)\n"
"...\n"
"gallahad the pure\n"
"robin the brave"
msgstr""
">>> knights = {'gallahad': 'the pure', 'robin': 'the brave'}\n"
">>> for k, v in knights.items():\n"
"... print(k, v)\n"
"...\n"
"gallahad the pure\n"
"robin the brave"
msgid"When looping through a sequence, the position index and corresponding value can be retrieved at the same time using the :func:`enumerate` function. ::"
msgstr"هنگام پیمایش روی یک دنباله، اندیس موقعیت و مقدار متناظر آن را میتوان بهطور همزمان با استفاده از تابع :func:`enumerate` دریافت کرد. ::"
msgid""
">>> for i, v in enumerate(['tic', 'tac', 'toe']):\n"
"... print(i, v)\n"
"...\n"
"0 tic\n"
"1 tac\n"
"2 toe"
msgstr""
">>> for i, v in enumerate(['tic', 'tac', 'toe']):\n"
"... print(i, v)\n"
"...\n"
"0 tic\n"
"1 tac\n"
"2 toe"
msgid"To loop over two or more sequences at the same time, the entries can be paired with the :func:`zip` function. ::"
msgstr"برای پیمایش روی دو یا چند دنباله بهطور همزمان، میتوان ورودیهای آنها را با استفاده از تابع :func:`zip` جفت کرد. ::"
">>> answers = ['lancelot', 'the holy grail', 'blue']\n"
">>> for q, a in zip(questions, answers):\n"
"... print('What is your {0}? It is {1}.'.format(q, a))\n"
"...\n"
"What is your name? It is lancelot.\n"
"What is your quest? It is the holy grail.\n"
"What is your favorite color? It is blue."
msgid"To loop over a sequence in reverse, first specify the sequence in a forward direction and then call the :func:`reversed` function. ::"
msgstr"برای پیمایش روی یک دنباله بهصورت معکوس، ابتدا دنباله را در جهت عادی مشخص کنید و سپس تابع :func:`reversed` را فراخوانی کنید. ::"
msgid""
">>> for i in reversed(range(1, 10, 2)):\n"
"... print(i)\n"
"...\n"
"9\n"
"7\n"
"5\n"
"3\n"
"1"
msgstr""
">>> for i in reversed(range(1, 10, 2)):\n"
"... print(i)\n"
"...\n"
"9\n"
"7\n"
"5\n"
"3\n"
"1"
msgid"To loop over a sequence in sorted order, use the :func:`sorted` function which returns a new sorted list while leaving the source unaltered. ::"
msgstr"برای پیمایش روی یک دنباله با ترتیب مرتبشده، از تابع :func:`sorted` استفاده کنید که یک فهرست مرتبشدهٔ جدید برمیگرداند، بدون اینکه دنبالهٔ اصلی را تغییر دهد. ::"
msgid"Using :func:`set` on a sequence eliminates duplicate elements. The use of :func:`sorted` in combination with :func:`set` over a sequence is an idiomatic way to loop over unique elements of the sequence in sorted order. ::"
msgstr"استفاده از :func:`set` روی یک دنباله، عناصر تکراری را حذف میکند. استفاده از :func:`sorted` همراه با :func:`set` روی یک دنباله، روشی رایج در پایتون برای پیمایش روی عناصر یکتای دنباله با ترتیب مرتبشده است. ::"
msgid"It is sometimes tempting to change a list while you are looping over it; however, it is often simpler and safer to create a new list instead. ::"
msgstr"گاهی هنگام پیمایش روی یک فهرست وسوسه میشویم که آن را تغییر دهیم؛ بااینحال، اغلب سادهتر و امنتر است که بهجای آن یک فهرست جدید ایجاد کنیم. ::"
msgid"The conditions used in ``while`` and ``if`` statements can contain any operators, not just comparisons."
msgstr"شرطهایی که در دستورهای ``while`` و ``if`` استفاده میشوند، میتوانند شامل هر عملگری باشند، نه فقط عملگرهای مقایسهای."
msgid"The comparison operators ``in`` and ``not in`` are membership tests that determine whether a value is in (or not in) a container. The operators ``is`` and ``is not`` compare whether two objects are really the same object. All comparison operators have the same priority, which is lower than that of all numerical operators."
msgstr"عملگرهای مقایسهای ``in`` و ``not in`` آزمونهای عضویت هستند که مشخص میکنند آیا یک مقدار درون یک ظرف (یا خارج از آن) قرار دارد یا نه. عملگرهای ``is`` و ``is not`` بررسی میکنند که آیا دو شیء واقعاً همان شیء یکسان هستند یا خیر. تمام عملگرهای مقایسهای اولویت یکسانی دارند که از اولویت تمام عملگرهای عددی پایینتر است."
msgid"Comparisons can be chained. For example, ``a < b == c`` tests whether ``a`` is less than ``b`` and moreover ``b`` equals ``c``."
msgstr"مقایسهها میتوانند زنجیرهای باشند. برای مثال، ``a < b == c`` بررسی میکند که آیا ``a`` کوچکتر از ``b`` است و علاوه بر آن ``b`` با ``c`` برابر است."
msgid"Comparisons may be combined using the Boolean operators ``and`` and ``or``, and the outcome of a comparison (or of any other Boolean expression) may be negated with ``not``. These have lower priorities than comparison operators; between them, ``not`` has the highest priority and ``or`` the lowest, so that ``A and not B or C`` is equivalent to ``(A and (not B)) or C``. As always, parentheses can be used to express the desired composition."
msgstr"مقایسهها را میتوان با استفاده از عملگرهای بولی ``and`` و ``or`` ترکیب کرد و نتیجهٔ یک مقایسه (یا هر عبارت بولی دیگر) را میتوان با ``not`` نقیض کرد. این عملگرها اولویت پایینتری نسبت به عملگرهای مقایسهای دارند؛ در میان آنها، ``not`` بالاترین اولویت و ``or`` پایینترین اولویت را دارد، بنابراین ``A and not B or C`` معادل ``(A and (not B)) or C`` است. همانند همیشه، میتوان از پرانتزها برای بیان ترکیب موردنظر استفاده کرد."
msgid"The Boolean operators ``and`` and ``or`` are so-called *short-circuit* operators: their arguments are evaluated from left to right, and evaluation stops as soon as the outcome is determined. For example, if ``A`` and ``C`` are true but ``B`` is false, ``A and B and C`` does not evaluate the expression ``C``. When used as a general value and not as a Boolean, the return value of a short-circuit operator is the last evaluated argument."
msgstr"عملگرهای بولی ``and`` و ``or`` بهاصطلاح عملگرهای *کوتاهمدار* هستند: آرگومانهای آنها از چپ به راست ارزیابی میشوند و ارزیابی بهمحض مشخص شدن نتیجه متوقف میشود. برای مثال، اگر ``A`` و ``C`` درست باشند اما ``B`` نادرست باشد، عبارت ``A and B and C`` عبارت ``C`` را ارزیابی نمیکند. هنگامی که یک عملگر کوتاهمدار بهعنوان یک مقدار عمومی و نه بهعنوان یک مقدار بولی استفاده میشود، مقدار بازگشتی آن آخرین آرگومان ارزیابیشده است."
msgid"It is possible to assign the result of a comparison or other Boolean expression to a variable. For example, ::"
msgstr"امکان اختصاص دادن نتیجهٔ یک مقایسه یا عبارت بولی دیگر به یک متغیر وجود دارد. برای مثال، ::"
msgid"Note that in Python, unlike C, assignment inside expressions must be done explicitly with the :ref:`walrus operator <why-can-t-i-use-an-assignment-in-an-expression>` ``:=``. This avoids a common class of problems encountered in C programs: typing ``=`` in an expression when ``==`` was intended."
msgstr"توجه کنید که در پایتون، برخلاف C، انتساب درون عبارتها باید بهصورت صریح با عملگر :ref:`walrus <why-can-t-i-use-an-assignment-in-an-expression>` ``:=`` انجام شود. این کار از یک دستهٔ رایج از مشکلات موجود در برنامههای C جلوگیری میکند: نوشتن ``=`` در یک عبارت، در حالی که منظور ``==`` بوده است."
msgid"Comparing Sequences and Other Types"
msgstr"مقایسهٔ دنبالهها و انواع دیگر"
msgid"Sequence objects typically may be compared to other objects with the same sequence type. The comparison uses *lexicographical* ordering: first the first two items are compared, and if they differ this determines the outcome of the comparison; if they are equal, the next two items are compared, and so on, until either sequence is exhausted. If two items to be compared are themselves sequences of the same type, the lexicographical comparison is carried out recursively. If all items of two sequences compare equal, the sequences are considered equal. If one sequence is an initial sub-sequence of the other, the shorter sequence is the smaller (lesser) one. Lexicographical ordering for strings uses the Unicode code point number to order individual characters. Some examples of comparisons between sequences of the same type::"
msgstr "اشیای دنبالهای معمولاً میتوانند با اشیای دیگری از همان نوع دنباله مقایسه شوند. مقایسه از ترتیب *لغتنامهای* (*lexicographical*) استفاده میکند: ابتدا دو آیتم اول با یکدیگر مقایسه میشوند و اگر متفاوت باشند، نتیجهٔ مقایسه را تعیین میکنند؛ اگر برابر باشند، دو آیتم بعدی مقایسه میشوند و این روند ادامه پیدا میکند تا زمانی که یکی از دنبالهها به پایان برسد. اگر دو آیتمی که باید مقایسه شوند خودشان دنبالههایی از همان نوع باشند، مقایسهٔ لغتنامهای بهصورت بازگشتی انجام میشود. اگر تمام آیتمهای دو دنباله برابر مقایسه شوند، دنبالهها برابر در نظر گرفته میشوند. اگر یکی از دنبالهها زیردنبالهٔ ابتدایی دیگری باشد، دنبالهٔ کوتاهتر، کوچکتر (کمتر) در نظر گرفته میشود. ترتیب لغتنامهای برای رشتهها از شمارهٔ نقطهٔ کد یونیکد برای مرتبسازی نویسههای منفرد استفاده میکند. چند نمونه از مقایسهٔ دنبالههای همنوع::"
msgid""
"(1, 2, 3) < (1, 2, 4)\n"
"[1, 2, 3] < [1, 2, 4]\n"
"'ABC' < 'C' < 'Pascal' < 'Python'\n"
"(1, 2, 3, 4) < (1, 2, 4)\n"
"(1, 2) < (1, 2, -1)\n"
"(1, 2, 3) == (1.0, 2.0, 3.0)\n"
"(1, 2, ('aa', 'ab')) < (1, 2, ('abc', 'a'), 4)"
msgstr""
"(1, 2, 3) < (1, 2, 4)\n"
"[1, 2, 3] < [1, 2, 4]\n"
"'ABC' < 'C' < 'Pascal' < 'Python'\n"
"(1, 2, 3, 4) < (1, 2, 4)\n"
"(1, 2) < (1, 2, -1)\n"
"(1, 2, 3) == (1.0, 2.0, 3.0)\n"
"(1, 2, ('aa', 'ab')) < (1, 2, ('abc', 'a'), 4)"
msgid"Note that comparing objects of different types with ``<`` or ``>`` is legal provided that the objects have appropriate comparison methods. For example, mixed numeric types are compared according to their numeric value, so 0 equals 0.0, etc. Otherwise, rather than providing an arbitrary ordering, the interpreter will raise a :exc:`TypeError` exception."
msgstr"توجه کنید که مقایسهٔ اشیای نوعهای مختلف با ``<`` یا ``>`` در صورتی مجاز است که اشیا متدهای مقایسهٔ مناسب داشته باشند. برای مثال، نوعهای عددی ترکیبی بر اساس مقدار عددی خود مقایسه میشوند، بنابراین 0 با 0.0 برابر است و موارد مشابه. در غیر این صورت، مفسر بهجای ارائهٔ یک ترتیب دلخواه، یک استثنای :exc:`TypeError` پرتاب میکند."
msgid"Footnotes"
msgstr"پانویسها"
msgid"Other languages may return the mutated object, which allows method chaining, such as ``d->insert(\"a\")->remove(\"b\")->sort();``."
msgstr"زبانهای دیگر ممکن است شیء تغییریافته را برگردانند، که امکان زنجیرهسازی متدها را فراهم میکند، مانند ``d->insert(\"a\")->remove(\"b\")->sort();``."