Posts Tagged ‘List’

What Is The File “ckywlufw.dll” And How Can I Get Rid Of It In My Add-on List?

Tuesday, February 16th, 2010

I’ve been a round a bit & i’ve never heard of ckywlufw.dll – are you spelling it right ?

Python How To Sort A List (why Am I Getting This Error) Simple.?

Tuesday, August 18th, 2009

I am trying to sort a simple list and get it in order. My script is as follows:
import sys
import operator
a = [5,7,4,2,6]
a.Sort()
print [a]
and I get this error:
AttributeError: ‘list’ object has no attribute ‘Sort’
Anyone know whats up? I’m using python 2.6.1
Thanks…