Run
import math x = 5.5 i = 3 result = math.ldexp(x, i) print('ldexp(x, i) :', result)
Output