This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
summa = open("../summa.txt", 'r') | |
sum_answers = open("../buckets/answers.txt", "w") | |
summa_split = summa.read().split(' ') | |
switch = {'\n':' ', '_______________________':'', ']':'', '[':'', '(':'', | |
')':'', '_':'', ' man ':' humanity ', " man's ":' human ', | |
' man':' human', ' His ':' Her ', ' He ':' She ', ' Himself ':' Herself ', | |
' men ':' people '} | |
def check_answers(): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"" BASIC SETUP | |
filetype plugin indent on | |
set omnifunc=syntaxcomplete#Complete | |
syntax on | |
set encoding=utf-8 | |
set number | |
set tabstop=4 | |
set shiftwidth=4 | |
set expandtab |