DeepBlue/data/count.py
2020-02-02 14:41:45 +01:00

6 lines
114 B
Python

count=0
with open('naughty_step.txt', 'r') as file:
for line in file:
count += len(line)
print(count)