Skip to content

Custom replica of python's builtin method repr()

Notifications You must be signed in to change notification settings

andredif/adr-repr

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 

Repository files navigation

adr-repr

Custom replica of python's builtin method repr()

For every kind of object, invoke x_repr() function

Snippet example:

x = {3:[4, 5], 5:6, (8,9):{44:{3:9, 7:7}}}

print(x_repr(x))

{3: [4, 5], 5: 6, (8, 9): {44: {3: 9, 7: 7}}}

About

Custom replica of python's builtin method repr()

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages