Edited file names
This commit is contained in:
parent
5c739e9cf7
commit
249f02be9c
@ -1,44 +0,0 @@
|
|||||||
import re
|
|
||||||
|
|
||||||
|
|
||||||
def openFile(fileName,hamletArray = ['H','a', 'm', 'l', 'e', 't'], hamletFullWord = r'Hamlet'):
|
|
||||||
with open(fileName, "r", encoding="utf-8") as file:
|
|
||||||
file_contents = file.read()
|
|
||||||
repCounter = 0
|
|
||||||
line = ''
|
|
||||||
counter = 0
|
|
||||||
checkWord = ''
|
|
||||||
|
|
||||||
index = 0
|
|
||||||
length = len(file_contents)
|
|
||||||
while index < length:
|
|
||||||
character = file_contents[index]
|
|
||||||
line += character
|
|
||||||
|
|
||||||
if len(checkWord) < len(hamletFullWord):
|
|
||||||
if re.match(hamletArray[counter], character):
|
|
||||||
checkWord+=character
|
|
||||||
counter += 1
|
|
||||||
else:
|
|
||||||
checkWord = ''
|
|
||||||
counter = 0
|
|
||||||
|
|
||||||
if character=='\n':
|
|
||||||
if checkWord=='Hamlet':
|
|
||||||
print(line)
|
|
||||||
line = ''
|
|
||||||
counter = 0
|
|
||||||
checkWord = ''
|
|
||||||
|
|
||||||
index+=1
|
|
||||||
|
|
||||||
|
|
||||||
#
|
|
||||||
print('---------------------SHAKESPEARE.EXP--------------------------------------')
|
|
||||||
openFile('shakespeare.exp')
|
|
||||||
print('----------------------SHAKESPEARE.EXP-----------------------------------')
|
|
||||||
openFile('shakespeare.in')
|
|
||||||
print('------------------------SIMPLE.IN------------------------------------')
|
|
||||||
openFile('simple.in')
|
|
||||||
print('-----------------------SIMPLE.EXP--------------------------------------')
|
|
||||||
openFile('simple.exp')
|
|
@ -1,2 +0,0 @@
|
|||||||
str = r'[Pp ]ies '
|
|
||||||
print(len(str))
|
|
Loading…
Reference in New Issue
Block a user