По сути, я читаю файл построчно и разделяю их.Сначала я проверяю, могу ли я превратить их в целое число, и если мне это не удается, трактуйте их как строки.
def separate(filename):
all_integers = []
all_strings = []
with open(filename) as myfile:
for line in myfile:
for item in line.split(' '):
try:
# Try converting the item to an integer
value = int(item, 10)
all_integers.append(value)
except ValueError:
# if it fails, it's a string.
all_strings.append(item)
return all_integers, all_strings
Затем, учитывая файл ('mytext.txt')
100 20 the birds are flying
200 3 banana
hello 4
... выполнение следующих действий в командной строке возвращает ...
>>> myints, mystrings = separate(r'myfile.txt')
>>> print myints
[100, 20, 200, 3, 4]
>>> print mystrings
['the', 'birds', 'are', 'flying', 'banana', 'hello']