Computer >> 컴퓨터 >  >> 프로그램 작성 >> Python

Python - 유니코드 목록 요소 결합

<시간/>

이 기사에서는 유니코드 목록 요소를 결합하는 방법을 배울 것입니다. 아래 단계에 따라 코드를 작성하세요.

  • 목록을 초기화합니다.
  • map 및 string.encode 메소드를 사용하여 모든 요소를 ​​유니코드로 변환합니다.
  • 디코드 방법을 사용하여 인코딩된 각 문자열을 변환합니다.
  • 결합 방법을 사용하여 문자열을 결합합니다.
  • 결과를 인쇄합니다.

예시

# initializing the list
strings = ['Tutorialspoint', 'is a popular', 'site', 'for tech leranings']

def get_unicode(string):
return string.encode()

# converting to unicode
strings_unicode = map(get_unicode, strings)

# joining the unicodes
result = ' '.join(unicode.decode() for unicode in strings_unicode)

# printing the result
print(result)

위의 코드를 실행하면 다음과 같은 결과를 얻을 수 있습니다.

출력

Tutorialspoint is a popular site for tech leranings

결론

기사에서 궁금한 점이 있으면 댓글 섹션에 언급하세요.