CodeUp/코드업-1006~1010-python

cosmos·2021년 1월 25일
4
post-thumbnail

문제📖

1006

1007

1008

1010

풀이🙏

1006

  • "!@#$%^&*()"를 출력한다.

1007

  • "C:\Download\hello.cpp"를 출력한다.

1008

  • 유니코드 출력문제이다.

1010

  • 정수형 변수 한개를 입력받고 출력한다.

코드💻

1006

print('"!@#$%^&*()"')

1007

print('"C:\Download\hello.cpp"')

1008

print(u'\u250C\u252C\u2510')
print(u'\u251C\u253C\u2524')
print(u'\u2514\u2534\u2518')

1010

import sys

n = int(sys.stdin.readline())

print(n)

결과😎

1006

1007

1008

1010

출처📝

https://codeup.kr/problemsetsol.php?psid=23

0개의 댓글