You are a race official on an ultra marathon (100 miles), and you want to display the number and elapsed time for each runner on a big display. Write a program to generate the phrase for the display based on the runner number, the mile marker, and the elapsed time.
What will be an ideal response?
```
def runner(runnerNumber, marker, elapsedTime):
runnerStr = str(runnerNumber)
markerStr = str(marker)
print “Runner #”+runnerStr+” passed mile “+markerStr+” at time “+elpasedTime
```
Computer Science & Information Technology
You might also like to view...
Which of the following primitive types is never promoted to another primitive type?
a. double. b. byte. c. boolean. d. Both a and c.
Computer Science & Information Technology
In Excel if you want to create a worksheet with all elements as they will appear on the printed page, you should choose the ____ View.
A. Publishing Layout B. Print Layout C. Page Layout D. Notebook Layout
Computer Science & Information Technology