progredes20261/modulo_os/utilidades.py

9 lines
230 B
Python
Raw Normal View History

2026-03-27 23:54:47 +00:00
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