appending items to a tuple python
tuple_item = ("Grepper")
#print(tuple_item)
converted = list(tuple_item)
#print(type(converted))
converted.append(" is amazing")
convert_to_tur = tuple(converted)
print(convert_to_tur)
appending items to a tuple python
tuple_item = ("Grepper")
#print(tuple_item)
converted = list(tuple_item)
#print(type(converted))
converted.append(" is amazing")
convert_to_tur = tuple(converted)
print(convert_to_tur)
add item to tuple
tpl1 = ('BMW', 'Lamborghini', 'Bugatti')
print(tpl1)
#Now you have to add an item
tpl1 = list(tpl1)
print(tpl1)
tpl1.append('Mercedes Benz')
tpl1 = tuple(tpl1)
print(tpl1)
#*Run the code*
>> ('BMW', 'Lamborghini', 'Bugatti')
>> ['BMW', 'Lamborghini', 'Bugatti']
>> ('BMW', 'Lamborghini', 'Bugatti', 'Mercedes Benz')
#Task accomplished
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