일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- ADsP
- 이코테
- tableau
- 코딩테스트
- matplotlib
- IRIS
- Deep Learning Specialization
- SQLD
- 이것이 코딩테스트다
- pandas
- 통계
- 태블로
- r
- 회귀분석
- Python
- 딥러닝
- 데이터 전처리
- ML
- 파이썬
- Google ML Bootcamp
- 자격증
- 시각화
- 데이터 분석
- 데이터분석
- sklearn
- 머신러닝
- 데이터분석준전문가
- pytorch
- scikit learn
- SQL
- Today
- Total
목록코딩 테스트/코드업 (2)
함께하는 데이터 분석
![](http://i1.daumcdn.net/thumb/C150x150.fwebp.q85/?fname=https://blog.kakaocdn.net/dn/cUlIrf/btsmQDim7op/9hklA7ElLFMSmHRKSqNYP1/img.png)
6052 print('True' if int(input()) else 'False') 6053 print('True' if not int(input()) else 'False') 6054 a, b = map(int, input().split()) print('True' if a and b else 'False') 6055 a, b = map(int, input().split()) print('True' if a or b else 'False') 6056 a, b = map(int, input().split()) print('True' if (a and not b) or (not a and b) else 'False') 6057 a, b = map(int, input().split()) print('Tru..
![](http://i1.daumcdn.net/thumb/C150x150.fwebp.q85/?fname=https://blog.kakaocdn.net/dn/bHArWz/btslvJRRMZS/beiIv3tE4kEbEIiTyc2Yl0/img.png)
6001 print("Hello") 6002 print("Hello World") 6003 print("Hello\nWorld") 6004 print("'Hello'") 6005 print('"Hello World"') 6006 print("\"!@#$%^&*()'") 6007 print("\"C:\\Download\\'hello'.py\"") 6008 print('print("Hello\\nWorld")') 6009 print(input()) 6010 print(int(input())) 6011 print(float(input())) 6012 print(input() + "\n" + input()) 6013 a = input() b = input() print(b + "\n" + a) 6014 prin..