DeepBlue/data/count.py

6 lines
114 B
Python
Raw Permalink Normal View History

2020-02-02 13:41:45 +00:00
count=0
with open('naughty_step.txt', 'r') as file:
for line in file:
count += len(line)
print(count)