هناك اكثر من طرق لتقسيم النصوص في لغات البرمجه.
منها إستخدام التعابير النمطية regular expressions وهذه نبذه عنها
import re
sentence = 'hello my world and welcome'
value = re.findall(r'\S+', s)
print(x) #['hello', 'my', 'world', 'and', 'welcome']
طريقة اخري
sentence = 'hello my world and welcome'
value = []
empty = ''
for word in sentence:
if word == ' ':
value.append(empty)
empty = ''
else:
empty += word
if empty:
value.append(empty)
print(value) #['hello', 'my', 'world', 'and', 'welcome']
ويمكنك حفظ النتيجة من خلال كتابة في ملف file
with open("file.txt", "w") as file:
for line in value:
txt_file.write(lien + "\n")