Ejemplo 1: convertir una tupla en una cadena de python
tuple_ = 1, 2, 3, 4, 5
str(list(tuple))
Ejemplo 2: cadena de python a tupla
l = list('abcd') # ['a', 'b', 'c', 'd']
l = map(None, 'abcd') # ['a', 'b', 'c', 'd']
l = [i for i in 'abcd'] # ['a', 'b', 'c', 'd']
import re # importing regular expression module
l = re.findall('.', 'abcd')
print(l) # ['a', 'b', 'c', 'd']
Ejemplo 3: como agregar cadenas en tupla en Python
First, convert tuple to list by built-in function list().
You can always append item to list object.
Then use another built-in function tuple() to
convert this list object back to tuple.
You can see new element appended to original tuple representation.
by tutorialspoint.com
happy coding :D
Ejemplo 4: cadena para tuplar python
string = "mystring"
tuple1 = tuple(string)
# ('m', 'y', ' ', 's', 't', 'r', 'i', 'n', 'g')
tuple2 = string,
# ("my string",)
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)