일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- tableau
- pandas
- 파이썬
- Google ML Bootcamp
- Deep Learning Specialization
- 데이터 전처리
- 태블로
- IRIS
- SQLD
- 시각화
- scikit learn
- Python
- sklearn
- r
- 데이터분석준전문가
- 자격증
- 통계
- 이것이 코딩테스트다
- ADsP
- 머신러닝
- 데이터분석
- SQL
- 데이터 분석
- ML
- pytorch
- matplotlib
- 이코테
- 딥러닝
- 코딩테스트
- 회귀분석
- Today
- Total
목록코드업 (2)
함께하는 데이터 분석
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..
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..