1,760
edits
Changes
→Part I - Interactive (leaning) mode: using the Python Interactive Shell
:** help()
:** type()
:* Study the output of the following command at the '''>>>''' prompt and keep them for future reference:<source>
>>> help(help)
>>> help(print)
>>> help(type)
>>> type(type)
>>> type(help)
>>> type(print)
</source>