标签: python pycharm
我知道可以在PyCharm中指定返回类型,如下所示:
def func(x): """ Compute square of x. :type x: int :rtype: int """ return x**x
但是我怎么会暗示我的函数正在返回一个类,而不是一个实例呢?我尝试过类似的事情:
:rtype: type of Class
但它没有用。