------------------------------------------------------------------------------
MC logo
Sorted User Lister
[^] Code Examples
------------------------------------------------------------------------------
<<Dictionary Objects who2.py Sorting>>
#!/usr/bin/python3

# List the account and human names from an /etc/passwd-style
# file on standard input in sorted order.  If there is no human name,
# or it equals the userid, then the name is printed as [ none ]

import sys, string

# Dictionary of entries.
iddict = { }

# Loop through each input line.
for line in sys.stdin.readlines():
    # Lines starting with # are comments.  Clean leading spaces, and
    # skip comments.
    line = str.lstrip(line)
    if line == '' or line[0] == '#':
        continue

    # Split the line by the : delimeter, extract the appropriate fields,
    # and get rid of any leading or trailing blanks.
    parts = str.split(line, ':')
    userid = str.strip(parts[0])
    name = str.strip(parts[4])

    # Trim the contents of the name following the first comma, if any.
    compos = str.find(name, ',')
    if compos != -1:
        name = name[0:compos]

    # If there is no human name, or if equals the login name, say [ none ]
    if name == '' or name == userid:
        name = '[ none ]'

    # Enter into the dictionary list.
    iddict[userid] = name

# Sort the names, then print.
ids = sorted(iddict.keys())
for userid in ids:
    # Get the human name.
    human = iddict[userid]

    # Pad the account name.
    if len(userid) < 12:
        userid = userid + ' ' * (12 - len(userid))

    # Spit it out.
    print(userid + human)
<<Dictionary Objects Sorting>>