일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- pip
- synology
- dataframe
- DFS
- SciPy
- E-P1
- mariadb
- index
- SPL
- mean
- CNN
- Splunk
- Button
- ipad
- Python
- Series
- pandas
- javascript
- LSTM
- RNN
- Numpy
- GitHub
- keras
- Lotto
- pycharm
- GT-S80
- imread
- 삼성소프트웨어멤버십
- 알고리즘
- install
Archives
- Today
- Total
목록add (1)
잠토의 잠망경
[python] set
github set 기본기능 set의 특징 무질서 중복제거 code github #region::sample s1 = set([1,2,3,4]) print(s1) print(len(s1)) print(type(s1)) s2 = set('hello') print(s2) print(len(s2)) s3 = set() print(s3) print(len(s3)) #endregion 결과 {1, 2, 3, 4} 4 {'e', 'h', 'l', 'o'} 4 set() 0set에서 교집합, 차집합, 합집합 code github # region::union,difference,intersection s1 = set([1,2,3,4,5,6,7,8]..
공부/Python
2020. 6. 14. 15:44