Python 格式化输出

.format()

if test_data:
    print 'Epoch {0}: {1}/{2}'.format(j, self.evaluate(test_data), len(test_data))
else:
    print 'Epoch {0} complete'.format(j)

万能的输出:%s

# 输出一个numpy.ndarray
>>> print('class dist.: %s' %(np.bincount([1, 0, 1])))
class dist. : [1 2]

%s 无法控制精度:

>>> print('value: %s' % (5/3))
value: 1.6666666666666667 

>>> print('value: %.3f' %(5/3))
value: 1.667

你可能感兴趣的:(Python 格式化输出)