Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 프로그래머스
- List 초기화
- python3
- permutations
- 피보나치 수
- List
- Split
- set to list
- 알고리즘
- Boto3
- Python
- Modified Date
- index
- homebrew-core is a shallow clone.
- 알고리즘 풀이
- list.sorted()
- list.pop(0)
- COUNT
- Python 몫
- Unknown command: cask
- Python 나머지
- sort()
- RecursionError
- list to set
- Algorithm
- List to String
- cask
- sting position
- zip()
- string
Archives
- Today
- Total
목록reverse (1)
데이터와 코드로 세상을 바라봅니다.
[Python3] - String reverse, String split
def solution(s): answer = '' s_list = s.split() for i in range (0,len(s_list)): if i%2==0: answer = answer+s_list[i]+" " else : answer = answer+s_list[i][::-1]+" " return answer[:-1] [문제] - 암호 해독하기 [문제 설명] 갓 초등학교에 들어간 아들이 일기를 씁니다. 아빠가 보는 것이 싫어서 나름대로 암호문을 만들어서 쓰고 있네요. 다음과 같은 방법으로 암호문을 해독하여 평문으로 만들어보세요. 암호는 띄어쓰기로 구분된 단어별로 다르게 적용됩니다. 홀수번째 단어는 그대로 쓰고, 짝수번째 단어는 좌우를 반전하여 씁니다. 암호화 된 문장의 해독 예시) '나는 늘오 햄..
Code/Python
2020. 11. 18. 11:11