fichier Python exercices
This commit is contained in:
parent
d13fd49d51
commit
d8c2e77297
189759
Python/Python/access.log
Normal file
189759
Python/Python/access.log
Normal file
File diff suppressed because it is too large
Load Diff
11
Python/Python/exotp2-exprregu
Executable file
11
Python/Python/exotp2-exprregu
Executable file
@ -0,0 +1,11 @@
|
||||
#!/usr/bin/python3
|
||||
import sys
|
||||
import re
|
||||
|
||||
regexp = '^(\S+) (\S+) (\S+) \[([^]]+)\] "(\w+) (\S+).*" (\d+) (\S+)'
|
||||
for line in sys.stdin:
|
||||
line = line.rstrip ()
|
||||
match =re.match (regexp, line)
|
||||
if match :
|
||||
print (match.group(1)," ",match.group(8))
|
||||
# for line in
|
23
Python/analog.py
Normal file
23
Python/analog.py
Normal file
@ -0,0 +1,23 @@
|
||||
#!/usr/bin/python3
|
||||
import sys
|
||||
import re
|
||||
|
||||
cptip = {}
|
||||
|
||||
|
||||
regexp = '^(\S+) (\S+) (\S+) \[([^]]+)\] "(\w+) (\S+).*" (\d+) (\S+)'
|
||||
for line in sys.stdin:
|
||||
line = line.rstrip ()
|
||||
match =re.match (regexp, line)
|
||||
if match :
|
||||
print (match.group(1)," ",match.group(8))
|
||||
#print {match.group(1)}
|
||||
ip = match.group(1)
|
||||
vol = int(match.group(8))
|
||||
if ip in cptip :
|
||||
cptip[ip] = cptip[ip] + vol
|
||||
else:
|
||||
cptip[ip] = vol
|
||||
|
||||
for key in cptip.keys():
|
||||
print(key, ":", cptip[key])
|
Loading…
x
Reference in New Issue
Block a user