当前位置: 首页>>编程示例 >>用法及示例精选 >>正文


Python String转Set用法及代码示例

我们可以使用 set() 函数将字符串转换为在 Python 中设置。

用法:set(iterable)

参数:任何可迭代的序列,如列表、元组或字典。

返回:如果未传递任何元素,则为空集。非重复元素可迭代修改为作为参数传递。

范例1:




# create a string str
string = "geeks"
print("Initially")
print("The datatype of string:" + str(type(string)))
print("Contents of string:" + string)
  
# convert String to Set
string = set(string)
print("\nAfter the conversion")
print("The datatype of string:" + str(type(string)))
print("Contents of string:", string)

输出:

Initially
The datatype of string:
Contents of string:geeks

After the conversion
The datatype of string:
Contents of string: {'k', 's', 'g', 'e'}

范例2:


# create a string str
string = "Hello World!"
print("Initially")
print("The datatype of string:" + str(type(string)))
print("Contents of string:" + string)
  
# convert String to Set
string = set(string)
print("\nAfter the conversion")
print("The datatype of string:" + str(type(string)))
print("Contents of string:", string)

输出:

Initially
The datatype of string:
Contents of string:Hello World!

After the conversion
The datatype of string:
Contents of string: {'r', 'H', ' ', 'l', 'o', '!', 'd', 'W', 'e'}




相关用法


注:本文由纯净天空筛选整理自mukulsomukesh大神的英文原创作品 Convert String to Set in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。