Question: String query _ item and a list of alphabetically sorted strings are read from input. Complete the find _ nation ( ) function: If query

String query_item and a list of alphabetically sorted strings are read from input. Complete the find_nation() function:
If query_item is found at index mid_index of the list, output query_item, followed by ' is found at index ' and the value of mid_index.
Else if range_size is 1, output query_item, followed by ' is not in the list'.
Otherwise, output query_item, followed by ' is not found at index ' and the value of mid_index. def find_nation(nations_list, query_item, low_index, high_index):
range_size =(high_index - low_index)+1
mid_index =(low_index + high_index)//2
''' Your code goes here '''
query_item = input()
data_list = input().split()
find_nation(data_list, query_item, 0, len(data_list)-1)

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!