11 lines
138 B
Python
11 lines
138 B
Python
#!/usr/bin/python3
|
|
|
|
try:
|
|
fh = open("users.txt", "r")
|
|
except:
|
|
print("Fichier inconnu")
|
|
else:
|
|
line = fh.readline()
|
|
while line:
|
|
|