This article introduces how to print a piece of user information using the python dictionary. This article introduces how to print a piece of user information using the python dictionary.
# Log file content
Alex #123 #1 eric #123 #1 tony #123 #1
# Index. py main program logic
# {'Tony ': [['000000', '1'], 'Alex': [['20170101', '1'], 'Eric ': [['100', '1']} This is the result. use python to implement obj = open ('log', 'r') line = obj. readlines () obj. close () dic ={} for item in line: item = item. strip () ele_line = item. split ('#') dic [ele_line [0] = [ele_line [1:] print dic {'Tony ': [['123', '1'], 'Alex ': [['123', '1'], 'Eric': [['123', '1']}
The above is the details of the method for printing a piece of user information in the python dictionary. For more information, see other related articles in the first PHP community!