Skip to content

Commit 8134c7f

Browse files
committed
PEP8 Changes
1 parent bd1fef4 commit 8134c7f

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed
Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
import pprint
22

3-
inputFile = input('File Name: ')
3+
inputFile = input('File Name: ')
44

5-
count = { }
5+
count = {}
66
with open(inputFile, 'r') as info:
7-
readFile = info.read()
8-
for character in readFile.upper():
9-
count.setdefault(character, 0)
10-
count[character] = count[character]+1
11-
7+
readFile = info.read()
8+
for character in readFile.upper():
9+
count.setdefault(character, 0)
10+
count[character] = count[character] + 1
11+
1212
value = pprint.pformat(count)
1313
print(value)

0 commit comments

Comments
 (0)