250x250
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 |
Tags
- SQL 고득점 Kit
- sql
- pcce 기출문제
- GIT
- 설계
- where
- count
- 코딩테스트 연습
- Join
- 슬라이싱
- css
- 파이썬
- List Comprehension
- date_format
- python
- 파이썬 슬라이싱
- 프로젝트
- 백준
- YOLOv5
- 프로그래머스
- ORDER BY
- html
- map
- 아이엠어바텐더
- 데이터
- Python3
- Django
- 파이썬 몫
- 단어 공부
- Len
Archives
- Today
- Total
목록replace (1)
nan + nan = 2nan
[프로그래머스/Python] 특정 문자 제거하기
코드 입력 어렵지 않은 문제이다.python의 replace 함수를 안다면 금방 풀리는 문제이다.replace는 대상 문자열의 특정 문자를 치환하는 역할을 한다.## 1번 예시 (l을 빈 값으로 치환)"hello".replace("l", "")## 출력heo## 2번 예시 (t를 p로 치환)"string".replace("t", "p")## 출력spring 주어진 my_string에서 replace 메서드를 호출해서 제거해야 할 문자를 replace로 빈 값으로 치환하면 된다. 출처 : 프로그래머스https://school.programmers.co.kr/learn/courses/30/lessons/120826 프로그래머스코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형..
Python/프로그래머스
2024. 6. 29. 10:35