[Python]collections, counter,bin

Jin·2021년 7월 12일
0

Python

목록 보기
2/6
post-thumbnail

데이터의 개수를 셀 때 유용한 파이썬의 collections 모듈의 Counter 클래스 사용법을 알아보겠습니다.

ex) From SW Expert Academy

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))

bin

10진수를 2진수(binary)로 변환

bin(number)

bin(10) #0b1010

ex) 다음의 결과와 같이 10진수를 2진수로 변환하는 프로그램을 작성하십시오.

intpu t : 8 #1001
num = bin(int(input()))
print(num[2:])) # index를 준 이유는 앞의 2글자 안나오게 하기 위해

모든 예시문제의 출처는 SW Expert Academy https://swexpertacademy.com/main/main.do

profile
내가 다시 볼려고 작성하는 블로그

0개의 댓글