Skip to content

Commit 35a89d9

Browse files
committed
feat: 6001~6009 풀기 완료
1 parent 56f6a57 commit 35a89d9

File tree

9 files changed

+31
-1
lines changed

9 files changed

+31
-1
lines changed

codeUpPython/6001.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
# 2024-08-07
22
# https://codeup.kr/problem.php?id=6001
3-
43
print("Hello")

codeUpPython/6003.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# 2024-08-07
2+
# https://codeup.kr/problem.php?id=6003
3+
print("Hello\nWorld")

codeUpPython/6004.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# 2024-08-07
2+
# https://codeup.kr/problem.php?id=6004
3+
print("'Hello'")

codeUpPython/6005.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# 2024-08-07
2+
# https://codeup.kr/problem.php?id=6005
3+
print('"Hello World"')

codeUpPython/6006.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# 2024-08-07
2+
# https://codeup.kr/problem.php?id=6006
3+
print("\"!@#$%^&*()\'")

codeUpPython/6007.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# 2024-08-07
2+
# https://codeup.kr/problem.php?id=6007
3+
# \도 안전하게 출력하려면 \\를 사용하는 것이 좋다.
4+
print('\"C:\Download\\\'hello\'.py\"')

codeUpPython/6008.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# 2024-08-07
2+
# https://codeup.kr/problem.php?id=6008
3+
print('print("Hello\\nWorld")')

codeUpPython/6009.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# 2024-08-07
2+
# https://codeup.kr/problem.php?id=6009
3+
"""
4+
input() 을 사용하면 키보드로 입력한 값을 가져온다.
5+
변수 = input()
6+
를 실행시키면 키보드로 입력한 값을 왼쪽의 변수에 저장한다.
7+
"""
8+
value = input()
9+
print(value)

codeUpPython/문제번호.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# 2024-08-0
2+
# url
3+

0 commit comments

Comments
 (0)