from math import *

r = [ 1.0, 1.5, 2.2 ]

logr = list(map(log,r))

print(logr)

r.append(1)

r.pop(2)

print(r)