
num = "89157665321"
phone = list(map(int, num))
num_integer_26 = list(map(lambda x: int(x) // 26, phone))
num_float_26 = list(map(lambda x: float(x) / 26, phone))
print(num_integer_26)
print(num_float_26)
phone = list(map(int, num))
num_integer_26 = list(map(lambda x: int(x) // 26, phone))
num_float_26 = list(map(lambda x: float(x) / 26, phone))
print(num_integer_26)
print(num_float_26)