관리 메뉴

솜씨좋은장씨

[BaekJoon] 23234번 : The World Responds (Python) 본문

Programming/코딩 1일 1문제

[BaekJoon] 23234번 : The World Responds (Python)

솜씨좋은장씨 2022. 5. 19. 21:19
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

Comments