1. 공백 없애기
만든이 : 기쁜 백숙
2. 문제정보
level.goorm.io/exam/43259/%EA%B3%B5%EB%B0%B1-%EC%97%86%EC%95%A0%EA%B8%B0/quiz/1
3. 풀이
간단한 함수를 이용하여 구연이 가능하다 아니면 for 을 사용하여 스페이스를 제거하는것도 가능하다
난 replace 를 활용하였고 함수의 설명은 링크로 남기겟다
# -*- coding: utf-8 -*-
# UTF-8 encoding when using korean
user_input = input()
print(user_input.replace(" ",""))
4. 결과
시간 : 0.0 s
# -*- coding: utf-8 -*-
# UTF-8 encoding when using korean
user_input = input()
print(user_input.replace(" ",""))
'Goorm ide 코딩 문제 > Level 1' 카테고리의 다른 글
[Goorm LEVEL 1] 16진수 (0) | 2021.04.13 |
---|---|
[Goorm LEVEL 1] 거스름돈 (0) | 2021.04.13 |
[Goorm LEVEL 1] Bubble Sort (0) | 2021.04.12 |
[Goorm LEVEL 1] 삼각형의 넓이 (0) | 2021.04.12 |
[Goorm LEVEL 1] Hello Goorm! (0) | 2021.04.12 |