0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Python > Tuples versus Lists

Last updated at Posted at 2017-03-02

参考1

@ Introducing Python: Modern Computing in Simple Packages by Bill Lubanovic
(No. 1466 / 12833)

..., but they have many fewer functions -- there is no append(), insert(), and so on -- because they can't be modified after creation.

listと比べてtupleを使う理由が記載されている。

  • Tuples use less space.
  • You can't clobber tuple items by mistake.
  • You can use tuples as dictionary keys
  • Named tuples can be a simple alternative to objects.
  • Function arguments are passed as tuples.

Named tuplesの例は以下。
http://stackoverflow.com/questions/2970608/what-are-named-tuples-in-python

Function argumentsへのtuples渡しは別途。

参考2

tupleとlistの違いについて
http://stackoverflow.com/questions/626759/whats-the-difference-between-lists-and-tuples

Tuples have structure, lists have order.

など。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?