格式化时的Python语法错误

时间:2018-04-05 15:11:47

标签: python

B != B_$$_jvst1a4_5

制作:

print "Detections before NMS = {}".format(detections)

1 个答案:

答案 0 :(得分:1)

detections = 10

print ("Detections before NMS = {}".format(detections))

输出:

Detections before NMS = 10

如果您使用的是Python 3,print是一个函数,因此需要括号。

我怀疑你使用的是Python 3,因此语法错误。