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
- 단어 공부
- Django
- 코딩테스트 연습
- sql
- List Comprehension
- 프로젝트
- 데이터
- count
- YOLOv5
- where
- 파이썬 몫
- date_format
- pcce 기출문제
- 프로그래머스
- SQL 고득점 Kit
- python
- html
- ORDER BY
- Len
- css
- map
- GIT
- Python3
- 파이썬
- 아이엠어바텐더
- 백준
- 슬라이싱
- 파이썬 슬라이싱
- 설계
- Join
Archives
- Today
- Total
nan + nan = 2nan
[백준][Python3] #9086. 문자열 본문
728x90
코드 입력
def print_(word):
"""
단어의 첫 글자와 마지막 글자만 뽑는 함수
"""
start = word[0]
end = word[-1]
return start + end
cnt = int(input())
# 처음 주어진 횟수만큼 루프문 생성
for _ in range(cnt):
start_end = print_(input())
print(start_end)
출처 : 백준 Online Judge
'Python > 백준 알고리즘' 카테고리의 다른 글
[백준][Python3] #11718. 그대로 출력하기 (2) | 2024.02.29 |
---|---|
[백준][Python3] #2444. 별 찍기 - 7 (2) | 2024.02.29 |
[백준][Python3] #2743. 단어 길이 재기 (0) | 2024.02.27 |
[백준][Python3] #10811. 바구니 뒤집기 (0) | 2024.02.26 |
[백준][Python3] #10813. 공 바꾸기 (0) | 2024.02.25 |
Comments