使用float格式python打印无

时间:2016-04-08 09:48:19

标签: python format floating nonetype

我想知道是否可以将None打印为空字符串,但使用浮动格式。 Matlab中的等效性为num2str([],"%3.0f"),将返回' '

感谢,

- 通道

1 个答案:

答案 0 :(得分:0)

这可以做到:

i = None # or test a float 
print('This is what I want: %s' % (i is None and '  ' or str(i)))