Skip to content

Instantly share code, notes, and snippets.

@diallobakary4
Last active April 25, 2022 17:03
Show Gist options
  • Save diallobakary4/758e8a622bf7e7b44a4e7701d098aa6e to your computer and use it in GitHub Desktop.
Save diallobakary4/758e8a622bf7e7b44a4e7701d098aa6e to your computer and use it in GitHub Desktop.
dir
# https://stackoverflow.com/questions/21542753/dir-without-built-in-methods
def vdir(obj):
return [x for x in dir(obj) if not x.startswith('__')]
#Test
#test2
print(1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment