Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 금융문자분석경진대회
- Docker
- 프로그래머스 파이썬
- PYTHON
- 코로나19
- ChatGPT
- 자연어처리
- programmers
- 편스토랑 우승상품
- 편스토랑
- github
- 프로그래머스
- AI 경진대회
- ubuntu
- 캐치카페
- Baekjoon
- 더현대서울 맛집
- SW Expert Academy
- dacon
- Git
- leetcode
- Real or Not? NLP with Disaster Tweets
- 우분투
- 데이콘
- 파이썬
- hackerrank
- Kaggle
- gs25
- 백준
- 맥북
Archives
- Today
- Total
목록
반응형
2022/04/28 (2)
반응형
솜씨좋은장씨
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/TEdLF/btrADUriYg7/OYGjWdwrQoVk0z7KOKIGMk/img.png)
코딩 1일 1문제! 오늘의 문제는 백준의 특별한 날 입니다. 10768번: 특별한 날 마지막 줄에 "Before", "After"나 "Special"을 출력한다. www.acmicpc.net 👨🏻💻 코드 ( Solution ) def special_day(month, day): answer = "After" if f"{month} {day}" == "2 18": answer = "Special" elif (month
Programming/코딩 1일 1문제
2022. 4. 28. 12:48
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/bkokFn/btrAFXf0Wq3/xEf3huQG2ZvxqUxrAQrMH0/img.png)
1. jupyter_notebook_config.py 생성하기 ~/.jupyter 위치에 jupyter_notebook_config.py를 생성해줍니다. $ cd ~/.jupyter 먼저 ~/.jupyter 위치로 이동합니다. $ jupyter notebook --generate-config 그 뒤에 위의 명령어를 통해 jupyter_notebook_config.py를 생성합니다. Writing default config to: /Users/donghyunjang/.jupyter/jupyter_notebook_config.py 그럼 위와 같은 메세지가 나오면서 jupyter_notebook_config.py 파일이 생성됩니다. Overwrite /Users/donghyunjang/.jupyter/jupy..
Programming/Python
2022. 4. 28. 11:34
반응형