当我进行一些代码测试时,解决方案功能下面有一些注释,如下所示:
"""
:type x: int
:rtype: int
"""
x
是我唯一的输入,那么 rtype 代表什么?
答案 0 :(得分:1)
为避免混淆:
type: Type of a parameter.
vartype: Type of a variable.
rtype: Return type.
答案 1 :(得分:0)
它是“返回类型”的缩写。
有关字段名称和示例的更多信息,请参见Sphinx documentation。