DeepBlue/data/count.py

6 lines
114 B
Python
Raw Normal View History

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