Header Ads Widget

Responsive Advertisement

Ticker

6/recent/ticker-posts

Python Tuples ( python class part 17 in Hindi )

 

Python tuples

Python में tuple, list की ही तरह अलग अलग items को स्टोर या होल्ड करने के लिए उपयोग की जाती है सिर्फ अंतर इतना ही है के list के items को modify किया जा सकता है और tuples के items को modify नहीं किया जा सकता है।

Tuple में items comma से separated रहते है और parenthesis में रखे जाते है।

tuple1 = ("Hello", "Hi", 200)
print(tuple1)

Access tuple items

tuples के items को index का उपयोग कर access किया जा सकता है।

tuple1 = ("Hello", "Hi", 200)
print(tuple1[1]) #outputs Hi

Modify and Delete Tuple Elements

Tuple immutable है इसलिए इसमें item को directly modify करना या delete करना संभव नहीं है, पर आप tuple को list में convert कर modify या delete items को कर सकते है।

Modify

tuple1 = ("Hello", "Hi", 200)
print(tuple1)

list1 = list(tuple1)
list1[1] = "World"
tuple1  = tuple(list1)

print(tuple1)

Check item exists in tuple

tuple1 = ("Hello", "Hi", 200)

if "Hi" in tuple1:
  print("Hi is there")

Access tuple item using loop

tuple1 = ("Hello", "Hi", 200)

for itms in tuple1:
  print(itms)

Join tuples

tuple1 = ("Hello", "Hi", 200)
tuple2 = (22, world")

tuple3 =tuple1 + tuple2
print(tuple3)

Get tuple length

len() का उपयोग कर जाना जा सकता है tuple में कितने items है।

tuple1 = ("Hello", "Hi", 200)

print(len(tuple1))

Click for next class part👉17

एक टिप्पणी भेजें

0 टिप्पणियाँ