티스토리 뷰
728x90
sWAP cASE
You are given a string and your task is to swap cases. In other words, convert all lowercase letters to uppercase letters and vice versa.
For Example:
Www.HackerRank.com → wWW.hACKERrANK.COM
Pythonist 2 → pYTHONIST 2
Function Description
Complete the swap_case function in the editor below.
swap_case has the following parameters:
- string s: the string to modify
Returns
- string: the modified string
Input Format
A single line containing a string s.
Constraints
Sample Input 0
HackerRank.com presents "Pythonist 2".
Sample Output 0
hACKERrANK.COM PRESENTS "pYTHONIST 2".
문제해석
입력되는 string에서 대문자는 소문자로 소문자는 대문자로 각각 변경하여 출력하면 된다.
문제풀이
보통 lower(), upper() 이렇게 제공하는데, 파이썬에서는 친절하게도 swapcase()라는 함수를 제공한다.
def swap_case(s):
return s.swapcase()
if __name__ == '__main__':
s = raw_input()
result = swap_case(s)
print result
728x90
LIST
'Programming > Python' 카테고리의 다른 글
[Python/Hackerrank] Strings > What's Your Name? (0) | 2021.12.08 |
---|---|
[Python/Hackerrank] Strings > String Split and Join (0) | 2021.12.08 |
[Python/Hackerrank] Basic Data Types > Tuples (0) | 2021.12.08 |
[Python/Hackerrank] Basic Data Types > Lists (0) | 2021.12.08 |
[Python/Hackerrank] Basic Data Types > Finding the percentage (0) | 2021.12.07 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- hackerrank
- 미중무역전쟁
- mysql
- list
- SQL Server
- Tableau
- 분석탭
- tensorflow
- 넷플릭스
- 대원화성
- 경구치료제
- MSSQL
- 넥스트BT
- python
- 동국알앤에스
- 해커랭크
- 매매일지
- Weather Observation Station
- MS SQL Server
- 테슬라
- HK이노엔
- 리비안
- python3
- 코로나19
- 몰누피라비르
- DATABASE
- insert
- TSQL
- string
- 에코캡
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함