dashboard
repositories
filestore
activity
search
login
python-kurs
/
example-projects-2024
example-projects-2024
summary
reflog
commits
tree
tickets
docs
forks
compare
blame
|
history
|
raw
kompositum
Hong-Phuc Bui
2024-07-15
7a61c8a9830ee9407afbb413d2f215fabb77ee8e
[python-kurs/example-projects-2024.git]
/
datei-idiome
/
file-lesen.py
1
2
3
4
5
6
7
8
import
sys
filename
=
sys
.
argv
[
1
]
with
open
(
filename
,
'r'
)
as
f
:
for
line
in
f
.
readlines
():
print
(
line
.
strip
())
pass