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
- sorting
- dfs
- Algorithm
- 백준
- php
- BASIC
- web
- Cleancode
- BFS
- 따라하며 배우는 C언어
- 따라하면서 배우는 C언어
- C
- 인프런
- greedy
- JavaScript
- 정수론
- String
- C언어
- server
- Math
- DP
- 생활코딩
- programmers
- 따배씨
- Python
- BOJ
- 종만북
- udemy
- Algospot
- graph
Archives
- Today
- Total
몽상실현개발주의
[BOJ] 10820 / 문자열 분석 / Python 파이썬 본문
[BOJ] 10820 / 문자열 분석 / Python 파이썬
https://www.acmicpc.net/problem/10820
풀이
문자열을 판단하는 method 인
- isdecimal() : 문자열이 10진수로 이루어져 있으면 True
- isupper() / islower() : 문자열이 알파벳 대/소 문자로 이루어져 있으면 True면 True
를 이용하여 풀어보았다.
import sys
while 1:
string = sys.stdin.readline().rstrip('\n')
if not string:
break
upper = lower = decimal = blank = 0
for s in string:
if s == " ":
blank += 1
elif s.isdecimal():
decimal += 1
else:
if s.isupper():
upper+=1
else:
lower+=1
print(lower, upper, decimal, blank)
※ cast 의 개수가 주어지지 않고 문자열 입력이 끝날 때 까지 동작해야 함을 주의하자
'Algorithm PS > BOJ' 카테고리의 다른 글
[BOJ] 11656 / 접미사 배열 / Python 파이썬 (0) | 2021.05.26 |
---|---|
[BOJ] 11655 / ROT13 / Python 파이썬 (0) | 2021.05.26 |
[BOJ] 10809 / 알파벳 찾기 / Python 파이썬 (0) | 2021.05.25 |
[BOJ] 10808 / 알파벳 개수 / Python 파이썬 (0) | 2021.05.25 |
[BOJ] 2743 / 단어 길이 재기 / Python 파이썬 (0) | 2021.05.25 |
Comments