[Solved] Python how to add “0.” in-front of a number January 11, 2023 by Kirat input = 65 output = float('0.' + str(input)) print(output) 1 solved Python how to add “0.” in-front of a number