Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

101 Database Exercises Text Workbook

Authors: McGraw-Hill

2nd Edition

0028007484, 978-0028007489

More Books

Students also viewed these Databases questions