Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
学ぶ Creating a Tuple in Python | Section
Python Data Structures
セクション 1.  16
single

single

bookCreating a Tuple in Python

メニューを表示するにはスワイプしてください

In Python, a tuple is a data structure that consists of a sequence of values enclosed in parentheses, with elements separated by commas. Tuples are similar to lists, but the key distinction is that tuples are immutable data structures.

Immutable data structures can't be modified after they're created. Tuples, just like lists, can hold any number of elements, and the data type of each element can vary. It's crucial to note that a tuple with only one element is defined with a comma following the element, as shown:

12
single_movie = ("Inception",) # Single-element tuple print(single_movie)
copy
Note
Note

Without the comma, Python will interpret the parentheses as regular grouping, not as a tuple.

12
not_a_tuple = ("Inception") print(type(not_a_tuple))
copy

Creating an empty tuple

123
empty_tuple = () print(empty_tuple) print(type(empty_tuple))
copy

Creating a tuple using the tuple() function

The tuple() function converts an iterable into a tuple. For example, you can convert a string into a tuple of its characters:

12
movie_title = tuple("Inception") print(movie_title)
copy

Creating a tuple from a list

You can also use the tuple() function to create a tuple from a list:

123
movie_list = ["Inception", "Interstellar", "Tenet"] movies_tuple = tuple(movie_list) print(movies_tuple)
copy
タスク

スワイプしてコーディングを開始

Initialize the tuple space_movies.

  • Use the following movies:
    '2001: A Space Odyssey', 'Interstellar', 'Star Wars: Episode IV - A New Hope', 'Gravity', 'The Martian'
  • To initialize the tuple, use parentheses ().
  • Tuples are immutable, meaning you cannot add elements to them after they are created. Make sure to include all the movies in the tuple during initialization.

解答

Switch to desktop実践的な練習のためにデスクトップに切り替える下記のオプションのいずれかを利用して、現在の場所から続行する
すべて明確でしたか?

どのように改善できますか?

フィードバックありがとうございます!

セクション 1.  16
single

single

AIに質問する

expand

AIに質問する

ChatGPT

何でも質問するか、提案された質問の1つを試してチャットを始めてください

some-alt