Skip to content

Instantly share code, notes, and snippets.

@alipbudiman
Created March 3, 2023 14:43
Show Gist options
  • Save alipbudiman/c6b8e188bda0134052451456ecfa97a3 to your computer and use it in GitHub Desktop.
Save alipbudiman/c6b8e188bda0134052451456ecfa97a3 to your computer and use it in GitHub Desktop.
def ReconstructionDir(data=list):
dirr = []
for x in dir(data):
if "__" not in x:
dirr.append(x)
return dirr
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment