BIG
from itertools import product
def coin_toss_all_heads_and_tails(num_coins):
outcomes = ['앞면', '뒷면']
all_combinations = list(product(outcomes, repeat=num_coins))
for combination in all_combinations:
print(combination)
# 동전 개수
num_coins = 15
coin_toss_all_heads_and_tails(num_coins)
LIST
'!!...Python' 카테고리의 다른 글
[python]2016 ~ 2021 삼성전자 임직원 현황 정보 가져오기 (0) | 2022.04.26 |
---|---|
[python]2021년 삼성전자 임직원 현황 정보 가져오기 (0) | 2022.04.26 |
[python]2022.01~2022.03 daily 삼성전자 주식가격 (0) | 2022.04.26 |
[python]2017.01~2021.12 Monthly KOSPI INDEX (0) | 2022.03.30 |
[python]MicroSoft 에서 만든 Python 기초강좌 (0) | 2015.03.30 |