日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 >

python创建空元组_用Python创建空元组

發布時間:2025/3/11 41 豆豆
生活随笔 收集整理的這篇文章主要介紹了 python创建空元组_用Python创建空元组 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

python創建空元組

Python | 空元組 (Python | empty tuple)

In python, we can also create a tuple without having any element. An empty tuple is created using a pair of round brackets, ().

在python中,我們也可以創建一個沒有任何元素的元組 。 使用一對圓括號()創建一個空元組

Syntax:

句法:

tuple_name = ()

Example 1:

范例1:

# Python empty tuple creation` tuple1 = () # printing tuple print("tuple1: ", tuple1) # printing length print("len(tuple1): ", len(tuple1)) # printing type print("type(tuple1): ", type(tuple1))

Output

輸出量

tuple1: () len(tuple1): 0 type(tuple1): <class 'tuple'>

Example 2:

范例2:

We can also create an empty tuple by initializing the tuple with tuple() – generally this method is used to clear/reinitialize the tuple.

我們也可以通過使用tuple()初始化元創建一個空元 組 -通常,此方法用于清除/重新初始化元組。

# Python empty tuple creation` tuple1 = tuple() # printing tuple print("tuple1: ", tuple1) # printing length print("len(tuple1): ", len(tuple1)) # printing type print("type(tuple1): ", type(tuple1)) print()# non-empty tuple tuple2 = (10, 20, 30, 40, 50) # printing original tuple print("tuple2: ", tuple2) print()# reinitialize tuple2 = tuple() print("After reinitialize...") # printing tuple print("tuple2: ", tuple2) # printing length print("len(tuple2): ", len(tuple2)) # printing type print("type(tuple2): ", type(tuple2))

Output

輸出量

tuple1: () len(tuple1): 0 type(tuple1): <class 'tuple'>tuple2: (10, 20, 30, 40, 50)After reinitialize... tuple2: () len(tuple2): 0 type(tuple2): <class 'tuple'>

翻譯自: https://www.includehelp.com/python/empty-tuple-creation.aspx

python創建空元組

創作挑戰賽新人創作獎勵來咯,堅持創作打卡瓜分現金大獎

總結

以上是生活随笔為你收集整理的python创建空元组_用Python创建空元组的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。