pytorch打印指定保留小数位数

pytorch打印指定保留小数位数_第1张图片
代码如下:

h = 0.1
for i in range(5):
    print(f'h={h:.5f}')
    h *= 0.1

你可能感兴趣的:(python)