将输出追加到字符串

时间:2020-08-24 19:32:13

标签: python python-3.x

如何将ip的输出附加到字符串

import ipaddress
import random


 def main():
     for _ in range(10000):
         ip = (ipaddress.IPv4Address(random.randint(0,2 ** 32)))
         print(ip)

 main()

2 个答案:

答案 0 :(得分:1)

在字符串列表上使用join的{​​{1}}方法。

str

答案 1 :(得分:0)

使用str.join的一种简单的解决方案:

', '.join(ipaddress.IPv4Address(random.randint(0,2 ** 32)) for _ in range(10000))