ruwhynot
0
Q:

tuple in python

# A tuple is a sequence of immutable Python objects. Tuples are
# sequences, just like lists. The differences between tuples
# and lists are, the tuples cannot be changed unlike lists and
# tuples use parentheses, whereas lists use square brackets.
tup1 = ('physics', 'chemistry', 1997, 2000);
tup2 = "a", "b", "c", "d";

# To access values in tuple, use the square brackets for
# slicing along with the index or indices to obtain value
# available at that index.
tup1[0] # Output: 'physics'
24
my_tuple = 3, 4.6, "dog"
print(my_tuple)

# tuple unpacking is also possible
a, b, c = my_tuple

print(a)      # 3
print(b)      # 4.6
print(c)      # dog
2
# An empty tuple 
empty_tuple = () 
# Another for doing the same 
tup = ('python', 'geeks') 
# Access first element
print (tup[0]) 
11
# the tuples are like the Read-Only they are not to be changed or modified they're constant

letters = "a", "b", "c", "d"    # you can use () as they are optional
print(letters)
"""
    tuples are immutable but it's important because they don't returns the bugs
    
    these are sequence types means you can iterate over them by it's index numbers
    
    tuples data can't be changed but list's data can be changed
"""
1
#a tuple is basically the same thing as a
#list, except that it can not be modified.
tup = ('a','b','c')
4
# A tuple is a collection which is ordered and unchangeable. 
# In Python tuples are written with round brackets.
thistuple = ("apple", "banana", "cherry")
print (thistuple)
> ('apple', 'banana', 'cherry')
# Access an element
print(thistuple[1])
'banana'
# Once a tuple is created, you cannot change its values.
1
my_tuple = ("hello")
print(type(my_tuple))  # <class 'str'>

# Creating a tuple having one element
my_tuple = ("hello",)
print(type(my_tuple))  # <class 'tuple'>

# Parentheses is optional
my_tuple = "hello",
print(type(my_tuple))  # <class 'tuple'>
1
#It's like a list, but unchangeable
tup = ("var1","var2","var3")
tup = (1,2,3)
#Error
2
example = [1, 2, 3, 4]
# Here is a list above! As we both know, lists can change in value
# unlike toples, which are not using [] but () instead and cannot
# change in value, because their values are static.

# list() converts your tuple into a list.
tupleexample = ('a', 'b', 'c')

print(list(tupleexample))

>> ['a', 'b', 'c']

# tuple() does the same thing, but converts your list into a tuple instead.

print(example)

>> [1, 2, 3, 4]

print(tuple(example))

>> (1, 2, 3, 4)
0

New to Communities?

Join the community