Home 백준 25083 새싹
Post
Cancel

백준 25083 새싹

백준 25083 새싹

문제

아래 예제와 같이 새싹을 출력하시오

예제 출력 1

1
2
3
4
5
6
         ,r'"7
r`-_   ,'  ,/
 \. ". L_r'
   `~\/
      |
      |

분석

쉬운 문제이지만, 파이썬의 경우 “와 ‘를 함께 출력하는 방법을 알아야할꺼 같다.
\를 이용해 해결했다.

1
2
3
4
5
6
print("         ,r\'\"7")
print("r`-_   ,'  ,/")
print(" \. \". L_r\'")
print("   `~\/")
print("      |")
print("      |")
1
2
3
4
5
6
         ,r'"7
r`-_   ,'  ,/
 \. ". L_r'
   `~\/
      |
      |
This post is licensed under CC BY 4.0 by the author.

ImportError: cannot import name 'ABCIndexClass' from 'pandas.core.dtypes.generic' 문제해결

백준 1065 한수

Comments powered by Disqus.