About Cacher
Web App
Download
Sign In
Sign Up
menu
Cacher is the code snippet organizer for pro developers
We empower you and your team to get more done, faster
Learn More
eightHundreds
1/26/2017 - 5:58 AM
share
Share
add_circle_outline
Save
获得对象的类的全名(带包名)
获得对象的类的全名(带包名)
getfullname.py
content_copy
file_download
def fullname(o): return o.__module__ + "." + o.__class__.__name__
clear