for i in range(1, 6):
print(i)
In this example, the `for` loop will iterate through the range of numbers from 1 to 5, and for each number, it will print the value of `i`. The `range(1, 6)` generates numbers starting from 1 up to, but not including, 6. 
PASSENGERS.DAT stores the records of passengers using the following structure:Create() – to input data for passengers and write it in the binary file PASSENGERS.DAT.SearchDestn(D) – to read contents from the file PASSENGERS.DAT and display the details of those Passengers whose DESTN matches with the value of D.UpdateFare() – to increase the fare of all passengers by 5% and rewrite the updated records into the file PASSENGERS.DAT.