ommit os library
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
def validar_ip (ip : str) -> bool:
|
||||
octetos = ip.split(".")
|
||||
if len(octetos) != 4:
|
||||
return False
|
||||
for octeto in octetos :
|
||||
if int (octeto) <0 or int(octeto) > 255:
|
||||
return False
|
||||
return True
|
||||
Reference in New Issue
Block a user