python迭代相关问题
# 目的是在程序出现异常时,更换下一个IP继续执行;IP全部更换完后,又从第一个IP开始循环更换;# 问题1:需要输出IP地址,怎样不带('47.101.44.122', 8081)括号?直接输出'47.101.44.122', 8081这种格式?
# 问题2:有其它简单的方式实现这个过程吗?
import time
ip_list = [('47.101.44.122', 8081), ('116.63.93.172', 8082), ('116.117.134.135', 8083), ('203.74.120.79', 8084)]
ip_iter = iter(ip_list)
IP = next(ip_iter)
while True:
try:
print(IP)
s = str(1) + 1# 出异常的语句
except:
if IP == ip_list[-1]:
ip_iter = iter(ip_list)
IP = next(ip_iter)
else:
IP = next(ip_iter)
print(IP)
time.sleep(2) 本帖最后由 moonandflower 于 2022-12-30 21:47 编辑
"""
while True:
try:
# print(IP)
host, port = IP
print(f"\"{host}\", {port}") #有双引号
print(f"{host}, {port}")#没有双引号
s = str(1) + 1# 出异常的语句
"""```python
# 目的是在程序出现异常时,更换下一个IP继续执行;IP全部更换完后,又从第一个IP开始循环更换;
# 问题1:需要输出IP地址,怎样不带('47.101.44.122', 8081)括号?直接输出'47.101.44.122', 8081这种格式?
# 问题2:有其它简单的方式实现这个过程吗?
import time
ip_list = [('47.101.44.122', 8081), ('116.63.93.172', 8082), ('116.117.134.135', 8083), ('203.74.120.79', 8084)]
# 改
while True:
for host, port in ip_list:
try:
print(f"{host}, {port}")
print("会发生异常的代码")
except:
# 有异常换下一个
continue
else: #如果没有发生异常,返回
return
``` 建议用这种格式,然后通过split(":")切割,通过下标0和1取值;
ip_list = ['47.101.44.122:8081', '116.63.93.172:8082']
print("ip:",ip_list.split(":"))
print("端口:",ip_list.split(":")) 15820394839 发表于 2022-12-30 20:50
建议用这种格式,然后通过split(":")切割,通过下标0和1取值;
冒号也可以改为你要的逗号 本帖最后由 狐白本白 于 2022-12-31 10:34 编辑
因为你列表中的元素为数组格式 所以直接迭代输出肯定是带着括号的数组格式 可以通过强转字符串类型 或输出结果通过隐士索引分别输出数组的0和1即可
迭代我觉得还是自己实现循环遍历 方便过程调试或者自己新增迭代功能
页:
[1]