감동, 마음이 움직이는 것
[python]list 중복값 제거 본문
a = [1, 2, 3, 4, 5, 2, 3, 4]
a = list(set(a))
a
[1, 2, 3, 4, 5]
https://bluese05.tistory.com/13
https://ssoonidev.tistory.com/100
'Tips (Utility, Computer Language, and etc.)' 카테고리의 다른 글
[python] making a directed network using networkx (0) | 2020.06.21 |
---|---|
[python] sites for plot examples (0) | 2020.06.21 |
[diversity index] (0) | 2020.06.09 |
[latex] matrix with dashed lines and large symbols (0) | 2020.05.21 |
[latex] matrix with a large symbol (0) | 2020.05.21 |