Changed conversion

This commit is contained in:
root 2020-02-02 14:41:45 +01:00
parent e12609a6be
commit a4aaa134bb
2 changed files with 8 additions and 3 deletions

5
data/count.py Normal file
View file

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