Ask Question
11 August, 06:29

For any element in keyslist with a value greater than 100, print the corresponding value in items list, followed by a space. ex: if keyslist = {42, 105, 101, 100} and items list = {10, 20, 30, 40}, print: 20 30 since keyslist[1] and keyslist[2] have values greater than 100, the value of itemslist[1] and itemslist[2] are printed.

+2
Answers (1)
  1. 11 August, 09:13
    0
    For i in range (len (keyslist)):

    if (keyslist[ i ] > 100):

    print ("%d " % itemslist[ i ]
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “For any element in keyslist with a value greater than 100, print the corresponding value in items list, followed by a space. ex: if ...” in 📙 Computers & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers