알고리즘 문제 풀이/Python

[Python] Bronze V - 10189. Hook (Baekjoon)

갓것걋 2024. 7. 24. 05:27
 

10189. Hook

Print out the word Hook as shown below.

www.acmicpc.net


문제 설명

더보기

Hook [다국어]

 

문제

Print out the word Hook as shown below.

입력

없음.

 

출력

Print out the word Hook as shown below.

 

예제 입력 1

없음

 

예제 출력 1

#  # #### #### #  #
#### #  # #  # # #
#### #  # #  # # #
#  # #### #### #  #
 

문제 해설

Python 코드

print('''#  # #### #### #  #
#### #  # #  # # #
#### #  # #  # # #
#  # #### #### #  #''')

 

Python 코드 해설

  1. 알아서 잘 출력하면 됨.