데이터의 개수를 셀 때 유용한 파이썬의 collections 모듈의 Counter 클래스 사용법을 알아보겠습니다.
6242. 다음은 10명의 학생들의 혈액형(A, B, AB, O) 데이터입니다.
['A', 'A', 'A', 'O', 'B', 'B', 'O', 'AB', 'AB', 'O']
for 문을 이용하여 각 혈액형 별 학생수를 구하십시오`
from collections import Counter
people_blood = Counter(['A', 'A', 'A', 'O', 'B', 'B', 'O', 'AB', 'AB', 'O'])
print(dict(people_blood))
10진수를 2진수(binary)로 변환
bin(number)
bin(10) #0b1010
num = bin(int(input()))
print(num[2:])) # index를 준 이유는 앞의 2글자 안나오게 하기 위해
모든 예시문제의 출처는 SW Expert Academy https://swexpertacademy.com/main/main.do