Ejemplo 1: Python conjunto vacío
# Distinguish set and dictionary while creating empty set
# initialize a with {}
a = {}
# check data type of a
print(type(a))
# initialize a with set()
a = set()
# check data type of a
print(type(a))
Ejemplo 2: cómo declarar un conjunto vacío en python
#Create a new empty set
x = set()
print(x)
#Create a non empty set
n = set([0, 1, 2, 3, 4])
print(n)
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)