我想编写一个函数,该函数将返回一个字符串,其中包含类型为 int 或 float 的给定参数。例如:
def exampleFunc(variable):
return 'Your Variable is ' + str(variable)
print(exampleFunc(3))
运行时输出:
>>> Your Variable is 3
但是在 return 语句中使用逗号时如下:
def exampleFunc(variable):
return 'Your Variable is', variable
print(exampleFunc(3))
它输出:
>>> ('Your Variable is', 3)
你能解释一下这种行为的原因吗?
德玛西亚99
慕尼黑8549860
largeQ
相关分类