Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

tuple python

# Change Value In Tuple :-

friends = ("Mido", "Lucifer", "Abdelrhman")

# Example => Wanna Change ( Abdelrhman ) To ( Aiiob );
# First We Need Transformation From Tuple To List ,
# We Need To Create Variable With Any Name 
# After This We Use list() Function

oneName = list(friends)

# After This We Need Change The Value ,

oneName[-1] = "Aiiob"

# After This We Need Transformation From List To Tuple ,
# We Use tuple() Function

friends = tuple(oneName)

# And We Done (:
Source by codefreelance.net #
 
PREVIOUS NEXT
Tagged: #tuple #python
ADD COMMENT
Topic
Name
2+4 =