当我做一些代码测试时,在解决方案函数下面有一些注释是这样的:
"""
:type x: int
:rtype: int
"""
x
是我唯一的输入,那么 rtype 代表什么? 最佳答案
为避免混淆:
type: Type of a parameter.
vartype: Type of a variable.
rtype: Return type.
关于python - rtype 在 Python 中是什么意思?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/51651561/