How can the length of the lists in the column be determine without iteration?
I have a dataframe like this:
                                                    CreationDate
2013-12-22 15:25:02                  [ubuntu, mac-osx, syslinux]
2009-12-14 14:29:32  [ubuntu, mod-rewrite, laconica, apache-2.2]
2013-12-22 15:42:00               [ubuntu, nat, squid, mikrotik]
I am calculating the length of lists in the CreationDate column and making a new Length column like this:
df['Length'] = df.CreationDate.apply(lambda x: len(x))
Which gives me this:
                                                    CreationDate  Length
2013-12-22 15:25:02                  [ubuntu, mac-osx, syslinux]       3
2009-12-14 14:29:32  [ubuntu, mod-rewrite, laconica, apache-2.2]       4
2013-12-22 15:42:00               [ubuntu, nat, squid, mikrotik]       4
Is there a more pythonic way to do this?
