Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created March 11, 2019 22:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/98ee0aa1c8748e806b44cdf4d2f6d734 to your computer and use it in GitHub Desktop.
Save parzibyte/98ee0aa1c8748e806b44cdf4d2f6d734 to your computer and use it in GitHub Desktop.
# Usar llaves {}
personajes = {"Walter White", "Hank", "Skyler", "Jesse", "Jane", "Saul"}
print(personajes)
# o llamar a set() pasándole una lista
lenguajes = set(["PHP", "Python", "Go", "Rust", "JavaScript"])
print(lenguajes)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment