Popular recipes tagged "builtins" but not "api"http://code.activestate.com/recipes/tags/builtins-api/2011-11-04T22:44:09-07:00ActiveState Code RecipesSee What the Builtins Are (Python)
2011-11-04T22:44:09-07:00Eric Snowhttp://code.activestate.com/recipes/users/4177816/http://code.activestate.com/recipes/577888-see-what-the-builtins-are/
<p style="color: grey">
Python
recipe 577888
by <a href="/recipes/users/4177816/">Eric Snow</a>
(<a href="/recipes/tags/builtins/">builtins</a>).
Revision 3.
</p>
<p>The built-ins are all those functions, constants, and types that are there when you need them most, like <code>list</code>, <code>any</code>, and <code>None</code>. This recipe is a simple way of looking at the built-ins. Check below for a thorough explanation.</p>