일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 코틀린
- springboot
- docker
- VOA
- Java
- c#
- kubernetes
- github
- 리액트
- DataGridView
- git
- 쿠버네티스
- 스프링
- react
- MySQL
- machine-learning
- 도커
- Spring
- 스프링부트
- design pattern
- AWS
- 파이썬
- 리팩토링
- Spring Boot
- Python
- Kotlin
- mybatis
- Winform
- 마이바티스
- 자바
Archives
- Today
- Total
목록Tuple (1)
보뇨 다이어리
join 메소드에 Tuple 사용하기
코딩테스트 문제를 풀다가 다음과 같이 진행하다보니 9번 라인에 에러를 뱉었다 def cal(): while True: numbers = list(map(int, input().split())) if numbers[0] is 0: return del numbers[0] numbers_of_cases = list(combinations(numbers, 6)) for case in numbers_of_cases: print(' '.join(case)) print() 분명 join 메소드를 뜯어보면 iterable 이 들어올수있다고하고 tuple, list 등이 iterable의 대표적인 예다 라고 되어있는데....왜인지 계속 찾아보다가 안나와서 ㅜㅜ 일단 해결방법은 찾았다 해결방법은 다음과 같은..
컴퓨터 관련/Python 정보
2019. 10. 17. 11:16