2to3 -w 〇〇.py
import inspect print(inspect.getsource(The function you want to look up))
--If you just want to look up the arguments or read a brief explanation
help(The function you want to look up)
Recommended Posts