Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created January 28, 2021 18:13
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/9f7d5191fe28e1b47f16a09d705397a3 to your computer and use it in GitHub Desktop.
Save parzibyte/9f7d5191fe28e1b47f16a09d705397a3 to your computer and use it in GitHub Desktop.
class Nodo:
def __init__(self, dato):
self.dato = dato
self.siguiente = None
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment