日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問(wèn) 生活随笔!

生活随笔

當(dāng)前位置: 首頁(yè) > 编程语言 > python >内容正文

python

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

發(fā)布時(shí)間:2025/3/11 python 36 豆豆
生活随笔 收集整理的這篇文章主要介紹了 python创建空元组_用Python创建空元组 小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.

python創(chuàng)建空元組

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中,我們也可以創(chuàng)建一個(gè)沒(méi)有任何元素的元組 。 使用一對(duì)圓括號(hào)()創(chuàng)建一個(gè)空元組

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.

我們也可以通過(guò)使用tuple()初始化元來(lái)創(chuàng)建一個(gè)空元 組 -通常,此方法用于清除/重新初始化元組。

# 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創(chuàng)建空元組

創(chuàng)作挑戰(zhàn)賽新人創(chuàng)作獎(jiǎng)勵(lì)來(lái)咯,堅(jiān)持創(chuàng)作打卡瓜分現(xiàn)金大獎(jiǎng)

總結(jié)

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

如果覺(jué)得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。