Generation

generate functionThu, 20 Apr 2023

crea un codigo en python que mientras se este ejecutando le haga un stress a una ip

def stress_ip(ip, stress_time): print(f'Stressing {ip} for {stress_time} seconds') for i in range(stress_time): requests.get(ip) time.sleep(1) print('Done')

Questions about programming?Chat with your personal AI assistant