Ask Question
22 July, 18:43

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.

+1
Answers (1)
  1. 22 July, 22:00
    0
    For i in range (len (keyslist)):

    if (keyslist[ i ] > 100):

    print ("%d " % itemslist[ i ]
Know the Answer?
Not Sure About the Answer?
Find 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 and Technology if you're in doubt about the correctness of the answers or there's no answer, then try to use the smart search and find answers to the similar questions.
Search for Other Answers