From JoyceUlysses.txt -- words occurring exactly once

2024-05-30 Thread HenHanna via Python-list



Given a text file of a novel (JoyceUlysses.txt) ...

could someone give me a pretty fast (and simple) Python program that'd 
give me a list of all words occurring exactly once?


  -- Also, a list of words occurring once, twice or 3 times



re: hyphenated words(you can treat it anyway you like)

   but ideally, i'd treat  [editor-in-chief]
   [go-ahead]  [pen-knife]
   [know-how]  [far-fetched] ...
   as one unit.
--
https://mail.python.org/mailman/listinfo/python-list


Re: From JoyceUlysses.txt -- words occurring exactly once

2024-05-30 Thread dn via Python-list

On 31/05/24 08:03, HenHanna via Python-list wrote:


Given a text file of a novel (JoyceUlysses.txt) ...

could someone give me a pretty fast (and simple) Python program that'd 
give me a list of all words occurring exactly once?


   -- Also, a list of words occurring once, twice or 3 times



re: hyphenated words    (you can treat it anyway you like)

    but ideally, i'd treat  [editor-in-chief]
    [go-ahead]  [pen-knife]
    [know-how]  [far-fetched] ...
    as one unit.



Did you mention the pay-rate for this work?


Split into words - defined as you will.
Use Counter.

Show some (of your) code and we'll be happy to critique...
--
Regards,
=dn
--
https://mail.python.org/mailman/listinfo/python-list