美国服务器python怎么遍历集合

已关闭留言

美国服务器python中对集合进行遍历的方法有以下两种

1.使用for循环对集合进行遍历

A = {‘1′,’2′,’star’}

for item in A:

print(item,end=”)

2.使用while对集合进行循环遍历

A = {‘1′,’2′,’star’}

try:

while True:

print(A.pop(),end=”)

except:

pass