Skip to content

Instantly share code, notes, and snippets.

@AlexDel
Last active July 31, 2018 10:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AlexDel/6917d337b708d37fc70a2914ddf4fb8c to your computer and use it in GitHub Desktop.
Save AlexDel/6917d337b708d37fc70a2914ddf4fb8c to your computer and use it in GitHub Desktop.
import csv
with open ('./fear1.txt', 'r', encoding='utf-8') as f:
tablitsa = csv.reader(f, delimiter=',')
#выводим первый текст
print(tablitsa[0][4])
#делим на слова
print(tablitsa[0][4].lower().split())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment