TypeError: sequence item 0: expected str instance, tuple found
from itertools import permutations
def solution(numbers):
for i in range(1,len(numbers)+1):
a = list(permutations(numbers,i))
print(a)
# a = [('1',), ('7',)] , [('1', '7'), ('7', '1')]
join을 할려고 하면!
print("".join(a))
# TypeError: sequence item 0: expected str instance, tuple found
왜냐하면 string.join connects elements inside list of strings, not tuples
즉, join을 할 때 list안에 요소들은 string이어야 한다. 여기서는 tuple이다.
따라서,
a = list(permutations(numbers,i))
per = list(map("".join, a))
Author And Source
이 문제에 관하여(TypeError: sequence item 0: expected str instance, tuple found), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@yunaaa/TypeError-sequence-item-0-expected-str-instance-tuple-found저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)