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
- SW Expert Academy
- 편스토랑 우승상품
- 데이콘
- AI 경진대회
- 코로나19
- 자연어처리
- hackerrank
- 파이썬
- leetcode
- ChatGPT
- Baekjoon
- 프로그래머스
- PYTHON
- 금융문자분석경진대회
- github
- 백준
- Real or Not? NLP with Disaster Tweets
- 프로그래머스 파이썬
- 캐치카페
- programmers
- 더현대서울 맛집
- 우분투
- Git
- dacon
- gs25
- Kaggle
- 맥북
- ubuntu
- 편스토랑
Archives
- Today
- Total
솜씨좋은장씨
[BaekJoon] 23234번 : The World Responds (Python) 본문
728x90
반응형

코딩 1일 1문제! 오늘의 문제는 백준의 The Worlds Responds 입니다.
23234번: The World Responds
In many introductory computer programming classes, the first program that students learn to write just prints “Hello, world!” It is used as a first assignment because it is a simple program that produces output. The program dates back to at least 1974,
www.acmicpc.net
👨🏻💻 코드 ( Solution )
def the_world_responds():
return "The world says hello!"
if __name__ == "__main__":
print(the_world_responds())
GitHub - SOMJANG/CODINGTEST_PRACTICE: 1일 1문제 since 2020.02.07
1일 1문제 since 2020.02.07. Contribute to SOMJANG/CODINGTEST_PRACTICE development by creating an account on GitHub.
github.com
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[BaekJoon] 5613번 : 계산기 프로그램 (Python) (0) | 2022.05.21 |
---|---|
[BaekJoon] 4150번 : 피보나치 수 (Python) (0) | 2022.05.20 |
[BaekJoon] 1267번 : 핸드폰 요금 (Python) (0) | 2022.05.18 |
[BaekJoon] 4821번 : 페이지 세기 (Python) (0) | 2022.05.17 |
[BaekJoon] 15680번 : 연세대학교 (Python) (0) | 2022.05.16 |