A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from http://svn.python.org/projects/python/branches/release25-maint/Doc/ref/reswords.py below:

"""Spit out the Python reserved words table.""" import keyword ncols = 5 def main(): words = keyword.kwlist[:] words.sort() colwidth = 1 + max(map(len, words)) nwords = len(words) nrows = (nwords + ncols - 1) / ncols for irow in range(nrows): for icol in range(ncols): i = irow + icol * nrows if 0 <= i < nwords: word = words[i] else: word = "" print "%-*s" % (colwidth, word), print main()

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4