이 글에서는 리스트의 튜플 요소를 결합하는 방법을 배울 것입니다. 조인 및 매핑 방법을 사용하는 것은 간단합니다. 아래 단계에 따라 작업을 완료하세요.
- 문자열이 포함된 튜플로 목록을 초기화합니다.
- 튜플을 인수로 취하고 문자열을 반환하는 join_tuple_string이라는 함수를 작성하세요.
- map(join_tuple_string, list) 메서드를 사용하여 목록에 있는 튜플을 결합합니다.
- 결과를 목록으로 변환합니다.
- 결과를 인쇄합니다.
예
# initializing the list with tuples string_tuples = [('A', 'B', 'C'), ('Tutorialspoint', 'is a', 'popular', 'site', 'for tech learnings')] # function that converts tuple to string def join_tuple_string(strings_tuple) -> str: return ' '.join(strings_tuple) # joining all the tuples result = map(join_tuple_string, string_tuples) # converting and printing the result print(list(result))
위의 코드를 실행하면 다음과 같은 결과를 얻을 수 있습니다.
출력
['A B C', 'Tutorialspoint is a popular site for tech learnings']
결론
기사에서 궁금한 점이 있으면 댓글 섹션에 언급하세요.