Maybe methods for learning to search the code and docs (rather than
memorizing APIs) would be a worthwhile exercise?

# Python
import json
help(json)

# IPython
!pydoc json
import json
json?
json??


# RTD: Read The Docs (and/or update the docs)
https://docs.python.org/3/search.html?q=loads

https://docs.python.org/3/library/json.html#basic-usage

https://github.com/python/cpython/blob/master/Doc/library/json.rst


# RTS: Read The Source
https://duckduckgo.com/?q=github+cpython+json

https://github.com/python/cpython/blob/master/Lib/json/__init__.py#L299

https://github.com/python/cpython/tree/master/Lib/test/test_json


On Thursday, November 28, 2019, Abdur-Rahmaan Janhangeer <
arj.pyt...@gmail.com> wrote:
> "Designed With Learning in Mind"
>
> Abdur-Rahmaan Janhangeer
> http://www.pythonmembers.club | https://github.com/Abdur-rahmaanJ
> Mauritius
_______________________________________________
Python-ideas mailing list -- python-ideas@python.org
To unsubscribe send an email to python-ideas-le...@python.org
https://mail.python.org/mailman3/lists/python-ideas.python.org/
Message archived at 
https://mail.python.org/archives/list/python-ideas@python.org/message/YGP2BIYBKYF5ZSFYUKVO37DQYOPYE7BO/
Code of Conduct: http://python.org/psf/codeofconduct/

Reply via email to