target 이라는 리스트의 중복되는 값들 각각에 대해 몇 개씩 있는지 출력하는 프로그램
groupby=list(set(target))
result=dict()
for ip in groupby:
result[ip]=target.count(ip)
print(result)
groupby=list(set(target))
result=dict()
for ip in groupby:
result[ip]=target.count(ip)
print(result)
HELP
sample_list = [1, 2, 3, 2]
set(sample_list) = {1, 2, 3}
'Development > Python' 카테고리의 다른 글
[Solved][Centos] ModuleNotFoundError: No module named '_ctypes' 해결 방법 (0) | 2019.11.17 |
---|---|
[Centos][Python] python개발을 위한 가상 환경 설치, 세팅, activate, deactivate 방법 (0) | 2019.11.17 |
[Python] python list 값 중복 삭제 방법 : set(sample_list) (0) | 2019.09.06 |
[Python] How to install and use Counter module : python 중복 카운트 (0) | 2019.07.26 |
[Python] python 심볼릭 링크 활성화 (symbolic link) (0) | 2019.07.25 |