I'm new to python. i've the following code:
liste = 'asdfasfasd:asdfafaergasde' # example, how the string looks like
liste = str.split(':');
if liste.count()>2 :
print "NOT YET SUPPORTED!"
According to the doc http://docs.python.org/library/stdtypes.html , python can just return number of i‘s for which s[i] == x .
Is there any other function, that can give me the number of all elements in the list?
Thanks in advance