Podemos convertir una string a setin Python usando la función set() .
Sintaxis: conjunto (iterable)
Parámetros: Cualquier secuencia iterable como lista, tupla o diccionario.
Devuelve: un conjunto vacío si no se pasa ningún elemento. Elemento no repetitivo iterable modificado como pasado como argumento.
Ejemplo 1 :
# create a string str string = "geeks" print("Initially") print("The datatype of string : " + str(type(string))) print("Contents of string : " + string) # convert String to Set string = set(string) print("\nAfter the conversion") print("The datatype of string : " + str(type(string))) print("Contents of string : ", string)
Producción :
Initially The datatype of string : Contents of string : geeks After the conversion The datatype of string : Contents of string : {'k', 's', 'g', 'e'}
Ejemplo 2:
# create a string str string = "Hello World!" print("Initially") print("The datatype of string : " + str(type(string))) print("Contents of string : " + string) # convert String to Set string = set(string) print("\nAfter the conversion") print("The datatype of string : " + str(type(string))) print("Contents of string : ", string)
Producción :
Initially The datatype of string : Contents of string : Hello World! After the conversion The datatype of string : Contents of string : {'r', 'H', ' ', 'l', 'o', '!', 'd', 'W', 'e'}
Publicación traducida automáticamente
Artículo escrito por mukulsomukesh y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA