rtype在Python中是什么意思?

时间:2018-08-02 10:40:18

标签: python python-sphinx

当我进行一些代码测试时,解决方案功能下面有一些注释,如下所示:

"""
:type x: int
:rtype: int
"""

x是我唯一的输入,那么 rtype 代表什么?

2 个答案:

答案 0 :(得分:1)

为避免混淆:

type:    Type of a parameter.
vartype: Type of a variable. 
rtype:   Return type. 

答案 1 :(得分:0)

它是“返回类型”的缩写。

有关字段名称和示例的更多信息,请参见Sphinx documentation