tuple and list in python
#to create a tuple you use ( ) :
myTuple = ()
#but to create a list you use [ ] :
myList = []
#tuples cannot be changed while the lists can be modified but Tuples are
#more memory efficient
#Code_Breaker
tuple and list in python
#to create a tuple you use ( ) :
myTuple = ()
#but to create a list you use [ ] :
myList = []
#tuples cannot be changed while the lists can be modified but Tuples are
#more memory efficient
#Code_Breaker
python list of tuples
#List of Tuples
list_tuples = [('Nagendra',18),('Nitesh',28),('Sathya',29)]
#To print the list of tuples using for loop you can print by unpacking them
for name,age in list_tuples:
print(name,age)
#To print with enumerate--->enumerate is nothing but gives the index of the array.
for index,(name,age) in list_tuples:
#print using fstring
print(f'My name is {name} and age is {age} and index is {index}')
#print using .format
print('My name is {n} and age is {a} and index is {i}'.format(n=name,a=age,i=index))
tuple in python
#a tuple is basically the same thing as a
#list, except that it can not be modified.
tup = ('a','b','c')
tuple() python
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)
tuple and list in python
#to create a tuple you use ( ) :
myTuple = ()
#but to create a list you use [ ] :
myList = []
#tuples cannot be changed while the lists can be modified but Tuples are
#more memory efficient
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us