Question: Python I have this code import subprocess import datetime from time import sleep i = 0 while i <100: try: subprocess.check_output(['ping -l 1000 www.google.com c-

Python

I have this code

import subprocess import datetime from time import sleep

i = 0 while i<100: try: subprocess.check_output(['ping -l 1000 www.google.com c- 100']) except: print("Ping google.com:", datetime.datetime.now())

def pumpcheck(timer_in_minutes): time_clicked = datetime.datetime.now() now = time_clicked timeDiff = datetime.timedelta(minutes=int(timer_in_minutes=.001))

while(time_clicked + timeDiff > now): print ('pumpOn') now = datetime.datetime.now() sleep(2) print ('pumpOff')

i += 1

I need to loop 120 times and stop Can you help?

Please type your answer

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!