python创建空元组_用Python创建空元组
生活随笔
收集整理的這篇文章主要介紹了
python创建空元组_用Python创建空元组
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
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)建一個沒有任何元素的元組 。 使用一對圓括號()創(chuàng)建一個空元組 。
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()初始化元組來創(chuàng)建一個空元 組 -通常,此方法用于清除/重新初始化元組。
# 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)作獎勵來咯,堅持創(chuàng)作打卡瓜分現(xiàn)金大獎總結(jié)
以上是生活随笔為你收集整理的python创建空元组_用Python创建空元组的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 2014年9月计算机二级mysql真题_
- 下一篇: c++ cdi+示例_C ++“或”关键