Sorry i am new to python so I would like to inquire something. Let's say the user enter his IP ( 192.168.1.10 ), i want to start looping from his input (192.168.1.10) to the end of the sub net 192.168.1.255/24.
I was thinking something along this line
for i in range(256):
IP = "192.168.1.%d" (i)
print IP
But how do i put his input inside? Any guidance will be helpful, thanks.
Cheers, Tech Newbie.