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)
can i append elemnts to a tuple?
def add_elements_to_tuple(initial_tuple: tuple= tuple(), *args)-> tuple:
initial_tuple= tuple(initial_tuple)
initial_tuple+= args
return initial_tuple
def add_elements_to_tuple(initial_tuple: tuple= tuple(), *args)-> tuple:
if type(initial_tuple)!= tuple:
raise TypeError("you have to input a tuple in the first parametere of this function!!")
initial_tuple+= args
return initial_tuple
# I don't have to convert the args to a tuple because when arguments are
# passed in with the asterisk the type is by default a tuple
# the first version does not raise errors in the majority of cases
# the second one is more likely to raise an error
# choose the one that you are more comfortable with
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