Other List Operations
Other list operations¶ Here are some of the other list operations we frequently use in Python.* count – number of time an element is present in a list. sort – to sort the data with in the list. Data in the list will be sorted in-place. In [2]: s =’asdfasfsafljojlsdfaljfasf’ In [3]: l = list(s) In [4]: l.count? …