[Tutor] AttributeError,

Ltc Hotspot ltc.hotspot at gmail.com
Wed Aug 12 01:24:39 CEST 2015


Hi Everyone,

Why is there an AttributeError, line 12, below : 'tuple' object has no
attribute 'sort'?

count = dict()
fname = raw_input("Enter file name: ")#
handle = open (fname, 'r')#
for line in handle:
    if line.startswith("From "):
        address = line.split()[5]
        line = line.rstrip()
        count[address] = count.get(address, 0) + 1

for key,val in count.items():
    ncount = (key,val)
    ncount.sort(reverse=True)
    print key,val



Raw data code, available at http://tinyurl.com/ob89r9p
Embedded data code, available at http://tinyurl.com/qhm4ppq
Visualization URL link, available at http://tinyurl.com/ozzmffy


Regards,
Hal


More information about the Tutor mailing list