반응형
내가 그동안 잘못 알고 있었다. 진짜 30일 챌린지는 따로 연락이 오더라...
아무튼 그래서 오늘 제대로 다시 시작했다.
input을 받아서 welcome to 30 Days of code! 와 같이 문자열을 출력하는 것이다.
# Read a full line of input from stdin and save it to our dynamically typed variable, input_string.
input_string = input()
# Print a string literal saying "Hello, World." to stdout.
print('Hello, World.')
# TODO: Write a line of code here that prints the contents of input_string to stdout.
초기 코드는 이렇게 주어져 있었다.
0일차인 만큼 그냥 즉각적으로 문제를 해결할 수 있었다.
# Read a full line of input from stdin and save it to our dynamically typed variable, input_string.
input_string = input()
# Print a string literal saying "Hello, World." to stdout.
print('Hello, World.')
print(input_string)
# TODO: Write a line of code here that prints the contents of input_string to stdout.
이렇게 써주면 끝이다.
설명이 필요가없다. 그냥 input으로 입력받은 내용을 print 즉 출력한다는 것이다.
'Hacker rank Challenge > python' 카테고리의 다른 글
30 Days Challenge 2일차 (0) | 2021.01.18 |
---|---|
30 Days Challenge 1일차 (0) | 2021.01.17 |
HackerRank Challenge 3일차 (0) | 2021.01.15 |
python HackerRank Challenge 2일차 (0) | 2021.01.14 |
python HackerRank Challenge 1일차 (0) | 2021.01.13 |