Skip to content

Instantly share code, notes, and snippets.

@gsora
Created December 15, 2015 10:13
Show Gist options
  • Select an option

  • Save gsora/8f89e5e05bd60972e428 to your computer and use it in GitHub Desktop.

Select an option

Save gsora/8f89e5e05bd60972e428 to your computer and use it in GitHub Desktop.
class lista:
listafica = []
def app(self, k):
self.listafica.append(k)
def rLista(self):
return self.listafica
import lista
omg = lista.lista()
omg.app("omg")
print(omg.rLista())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment