hey guys
I have a list of 1000 IP address that I need to use them in python code but I need them in specific format like this
192.168.1.1
192.168.1.2
192.168.2.1
I need them like this :
'192.168.1.1','192.168.1.2','192.168.2.1'
basically I need this format '','',''
any Idea ?

