Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,885 questions

51,811 answers

573 users

How to split text file into words with Python

3 Answers

0 votes
file = open("d:\data.txt", "r")

words = set(file.read().split())

print(words)


'''
run:

{'Profession:', 'Name:', 'Age:', 'Ajax', 'Programmer', '27'}

'''

 



answered Sep 21, 2017 by avibootz
0 votes
file = open("d:\data.txt", "r")

words = set(file.read().split())

for w in words:
    print(w)


'''
run:

Name:
Profession:
Ajax
Programmer
Age:
27

'''

 



answered Sep 21, 2017 by avibootz
0 votes
import re

file = open("d:\data.txt", "r")

words = set(file.read().split())

for w in words:
    print(re.sub(r'[^\w\s]', '', w))  # remove punctuation


'''
run:

Age
27
Ajax
Programmer
Profession
Name

'''

 



answered Sep 22, 2017 by avibootz

Related questions

1 answer 215 views
1 answer 212 views
212 views asked Aug 8, 2018 by avibootz
1 answer 169 views
1 answer 110 views
...