6 lines
114 B
Python
6 lines
114 B
Python
![]() |
count=0
|
||
|
with open('naughty_step.txt', 'r') as file:
|
||
|
for line in file:
|
||
|
count += len(line)
|
||
|
print(count)
|