File: class/Workbook/Exercises/Lab3/ex4c.py

L = [1, 2, 4, 8, 16, 32, 64]
X = 5

if (2 ** X) in L:
    print (2 ** X), 'was found at', L.index(2 ** X)
else:
    print X, 'not found'



[Home page] Books Code Blog Python Author Train Find ©M.Lutz