Question: Positive integer people _ on _ board is read from input, representing the number of travelers boarded onto a boat with 5 0 seats. Complete

Positive integer people_on_board is read from input, representing the number of travelers boarded onto a boat with 50 seats. Complete the range() function call so that the for loop iterates through the increasing sequence of all non-negative integers less than 50 minus people_on_board.
people_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!