본문 바로가기

Python_Matter/Solve

Python Learn the basics Quiz 29

반응형

Q>

|\_/|

|q p|   /}

( 0 )"""\

|"^"`    |

||_/=\\__|


강아지를 출력하는 코드를 작성하시오.(이스케이프 문자 사용)


A>

print('|\_/|')
print('|q p| /}')
print("( 0 )\"\"\"\\")
print("|\"^\"` |")
print('||_/=\\\__|')


O>

|\_/|

|q p|   /}

( 0 )"""\

|"^"`    |

||_/=\\__|


Process finished with exit code 0

반응형

'Python_Matter > Solve' 카테고리의 다른 글

Python Learn the basics Quiz 31  (0) 2019.05.02
Python Learn the basics Quiz 30  (0) 2019.05.02
Python Learn the basics Quiz 28  (0) 2019.04.26
Python Learn the basics Quiz 27  (0) 2019.04.26
Python Learn the basics Quiz 26  (0) 2019.04.13