Python/CodeUp121 1023 - 실수 1개 입력받아 부분별로 출력하기 a, b = input().split(".") print(int(a)) print(int(b)) 2021. 2. 18. 1022 - 문장 1개 입력받아 그대로 출력하기 sentence = input() print(sentence) 2021. 2. 18. 1021 - 단어 1개 입력받아 그대로 출력하기 word = input() print(word) 2021. 2. 18. 1020 - 주민번호 입력받아 형태 바꿔 출력하기 a, b = input().split("-") print(a+b) 2021. 2. 18. 이전 1 ··· 23 24 25 26 27 28 29 ··· 31 다음