0
Hello, I’m trying to develop a basic program, to run both in linux and in WINDOWS, in which I can let the user choose the original ip and the end and show among all of the network which Ips are already being used by some machine and those that are available. to avoid errors wanted tbm the user to identify his operating system example:
print("Escolha seu sistema operacional")
print("(1) WINDOWS")
print("(2) LINUX")
print("(3) MAC")
print("(4) SAIR")
if == 1:
print("Digite o IP inicial") exemplo digitado pelo usuario 192.168.254.1
i1= input()
print("Digite o IP Final") exemplo digitado pelo usuario 192.168.254.254
i2 = input()
nao sei como fazer isso para cada sistema
xxxxxxxxxxxxxx
xxxxxxxxxxx
xxxxxxxxx
if == 2:
print("Digite o IP inicial") exemplo digitado pelo usuario 192.168.254.1
i1= input()
print("Digite o IP Final") exemplo digitado pelo usuario 192.168.254.254
i2 = input()
nao sei como fazer isso para cada sistema
xxxxxxxxxxxxxx
xxxxxxxxxxx
xxxxxxxxx
if == 3:
print("Digite o IP inicial") exemplo digitado pelo usuario 192.168.254.1
i1= input()
print("Digite o IP Final") exemplo digitado pelo usuario 192.168.254.254
i2 = input()
nao sei como fazer isso para cada sistema
xxxxxxxxxxxxxx
xxxxxxxxxxx
xxxxxxxxx
friend, as I put on a graphical interface, showing the Ips offline on one side and the ONLINE on the other
– Frederico