Question: Positive integer travelers _ on _ board is read from input, representing the number of travelers in a van with 1 8 seats. Complete the

Positive integer travelers_on_board is read from input, representing the number of travelers in a van with 18 seats. Complete the range() function call so that the for loop iterates through the increasing sequence of all non-negative integers less than 18 minus travelers_on_board. travelers_on_board = int(input())
print('Seat numbers remaining:', end='')
for i in range(''' Your code goes here '''):
print(i, end='')
print()

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!