Python-加入Unicode列表元素

在本文中,我们将学习如何加入Unicode列表元素。请按照以下步骤编写代码。

  • 初始化列表。

  • 使用map和string.encode方法将所有元素转换为Unicode。

  • 使用解码方法转换每个编码的字符串。

  • 使用join方法连接字符串。

  • 打印结果。

示例

# initializing the list
strings = ['Nhooo', '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)

如果运行上面的代码,则将得到以下结果。

输出结果

Nhooo is a popular site for tech leranings

结论

如果您对本文有任何疑问,请在评论部分中提及它们。