Saltar al contenido

cómo acceder a la tupla en el ejemplo de código python

Nuestros desarrolladores estrellas han agotado sus reservas de café, en su búsqueda todo el tiempo por la respuesta, hasta que Paola halló la solución en Bitbucket por lo tanto en este momento la comparte con nosotros.

Ejemplo 1: qué es una tupla en 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'

Ejemplo 2: tupla en python

#a tuple is basically the same thing as a#list, except that it can not be modified.
tup =('a','b','c')

Ejemplo 3: tupla pyhton

#It's like a list, but unchangeable
tup =("var1","var2","var3")
tup =(1,2,3)#Error

Ejemplo 4: tupla() 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)

Aquí tienes las comentarios y valoraciones

Nos puedes añadir valor a nuestro contenido tributando tu veteranía en las observaciones.

¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)



Utiliza Nuestro Buscador

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *