<?xml version="1.0" encoding="utf-8" ?><rss version="2.0"><channel><title>Bing: Tuple Python Unpacking</title><link>http://www.bing.com:80/search?q=Tuple+Python+Unpacking</link><description>Search results</description><image><url>http://www.bing.com:80/s/a/rsslogo.gif</url><title>Tuple Python Unpacking</title><link>http://www.bing.com:80/search?q=Tuple+Python+Unpacking</link></image><copyright>Copyright © 2026 Microsoft. All rights reserved. These XML results may not be used, reproduced or transmitted in any manner or for any purpose other than rendering Bing results within an RSS aggregator for your personal, non-commercial use. Any other use of these results requires express written permission from Microsoft Corporation. By accessing this web page or using these results in any manner whatsoever, you agree to be bound by the foregoing restrictions.</copyright><item><title>What's the difference between lists and tuples? - Stack Overflow</title><link>https://stackoverflow.com/questions/626759/whats-the-difference-between-lists-and-tuples</link><description>What are the differences between lists and tuples, and what are their respective advantages and disadvantages?</description><pubDate>Mon, 06 Apr 2026 20:50:00 GMT</pubDate></item><item><title>list - What exactly are tuples in Python? - Stack Overflow</title><link>https://stackoverflow.com/questions/2488522/what-exactly-are-tuples-in-python</link><description>A tuple is a sequence of immutable Python objects. Tuples are sequences, just like lists. The differences between tuples and lists are, the tuples cannot be changed unlike lists and tuples use parentheses, whereas lists use square brackets. Creating a tuple is as simple as putting different comma-separated values.</description><pubDate>Wed, 08 Apr 2026 00:52:00 GMT</pubDate></item><item><title>python中的tuple应该怎么读？ - 知乎</title><link>https://www.zhihu.com/question/26425391</link><description>python中的tuple应该怎么读？ 有道词典是这样说的： 英 ['tjuːp (ə)l] 美 ['tjup (ə)l] 百度是这样说的： [英]tʌpl [美]tʌpl 书上是这样说的： 发音… 显示全部 关注者 26</description><pubDate>Wed, 08 Apr 2026 11:29:00 GMT</pubDate></item><item><title>python - What is a tuple useful for? - Stack Overflow</title><link>https://stackoverflow.com/questions/42034/what-is-a-tuple-useful-for</link><description>A tuple is a good way to pack multiple values into that cookie without having to define a separate class to contain them. I try to be judicious about this particular use, though.</description><pubDate>Mon, 06 Apr 2026 14:23:00 GMT</pubDate></item><item><title>python - List vs tuple, when to use each? - Stack Overflow</title><link>https://stackoverflow.com/questions/1708510/list-vs-tuple-when-to-use-each</link><description>Using a tuple instead of a list is like having an implied assert statement that this data is constant, and that special thought (and a specific function) is required to override that. Some tuples can be used as dictionary keys (specifically, tuples that contain immutable values like strings, numbers, and other tuples).</description><pubDate>Wed, 08 Apr 2026 15:04:00 GMT</pubDate></item><item><title>c# - Tuple.Create () vs new Tuple - Stack Overflow</title><link>https://stackoverflow.com/questions/27455581/tuple-create-vs-new-tuple</link><description>new Tuple&lt;int,int&gt;(1,2); Tuple.Create(1,2); Is there any difference between these two methods of Tuple creation? From my reading it seems to be more a convenient shorthand than anything like object creation in C++ (heap vs stack).</description><pubDate>Tue, 07 Apr 2026 11:59:00 GMT</pubDate></item><item><title>types - What are "named tuples" in Python? - Stack Overflow</title><link>https://stackoverflow.com/questions/2970608/what-are-named-tuples-in-python</link><description>Named tuples are basically easy-to-create, lightweight object types. Named tuple instances can be referenced using object-like variable dereferencing or the standard tuple syntax. They can be used similarly to struct or other common record types, except that they are immutable. They were added in Python 2.6 and Python 3.0, although there is a recipe for implementation in Python 2.4. For ...</description><pubDate>Tue, 07 Apr 2026 07:27:00 GMT</pubDate></item><item><title>python - How to change values in a tuple? - Stack Overflow</title><link>https://stackoverflow.com/questions/11458239/how-to-change-values-in-a-tuple</link><description>31 Well, as Trufa has already shown, there are basically two ways of replacing a tuple's element at a given index. Either convert the tuple to a list, replace the element and convert back, or construct a new tuple by concatenation.</description><pubDate>Wed, 08 Apr 2026 08:16:00 GMT</pubDate></item><item><title>How does tuple comparison work in Python? - Stack Overflow</title><link>https://stackoverflow.com/questions/5292303/how-does-tuple-comparison-work-in-python</link><description>Tuples are compared position by position: the first item of the first tuple is compared to the first item of the second tuple; if they are not equal (i.e. the first is greater or smaller than the second) then that's the result of the comparison, else the second item is considered, then the third and so on. See Common Sequence Operations: Sequences of the same type also support comparisons. In ...</description><pubDate>Thu, 09 Apr 2026 10:59:00 GMT</pubDate></item><item><title>Convert list to tuple in Python - Stack Overflow</title><link>https://stackoverflow.com/questions/12836128/convert-list-to-tuple-in-python</link><description>Have you assigned the name 'tuple' as a variable name? it should work fine. L is a list and we want to convert it to a tuple. L = [1, 2, 3] tuple (L) By invoking tuple, you convert the list (L) into a tuple. As done above. &gt;&gt; (1, 2, 3) you can go ahead and access any item in the tuple using the square brackets. L [0] 1</description><pubDate>Tue, 07 Apr 2026 08:24:00 GMT</pubDate></item></channel></rss>