일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- mariadb
- SciPy
- DFS
- pip
- pycharm
- Series
- E-P1
- 알고리즘
- Lotto
- index
- Splunk
- RNN
- pandas
- imread
- 삼성소프트웨어멤버십
- GT-S80
- Python
- LSTM
- Button
- install
- keras
- ipad
- CNN
- dataframe
- javascript
- SPL
- GitHub
- synology
- Numpy
- mean
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