Format Nomor dalam Python

num = 123
print(f'{num:.3f}') # 123.000
Rajanit Navapara