Why you do not want to use online word counter ?they are non english,also dont want to use online word counter
everytime copy paste article,also non english word ,unicode may mess upWhy you do not want to use online word counter ?
what?selecting the text, automatically generate word counts of any language.
already said dont want onlinecounting the words manually will be too much time consuming, please leverage on some online free tools that are designed for this purpose.
i guess you should employ someone then, if the pay is good you might just get more than one candidate.already said dont want online
i guess you should employ someone then, if the pay is good you might just get more than one candidate.already said dont want online
he said he doesn't want onlineIn my opinion, I would strongly suggest Grammerly. It works simply perfect irrespective of languages, just copy the content and paste it there it will give you the exact count.
the posted wants offline word count, so i've suggested he puts out an advert with a very attractive pay to enable him get candidates.Google docs.
paste the content.
Ctrl+A
Ctrl+shift+C
Oops didnt see the online thing
in ms word its Ctrl+Shift+G
def counter(file_path):
with open(file_path, 'r') as file:
content = file.read()
words = content.split()
word_count = len(words)
return word_count
file_path = '/path/to/text/file'
result = counter(file_path)
print(result)