You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
204 B
Python
11 lines
204 B
Python
|
2 weeks ago
|
"""simple line counter
|
||
|
|
"""
|
||
|
|
lines = 0
|
||
|
|
with open('lines', 'r') as fh:
|
||
|
|
lines = len(fh.readlines())
|
||
|
|
|
||
|
|
with open('calcul', 'w') as fh:
|
||
|
|
fh.write(str(lines + 145))
|
||
|
|
print("écriture du fichier `calcul`")
|
||
|
|
|