And*_*zco 0 python string function stub pycharm
我正在学习Python,因为我认为它是一种非常强大且强大的语言,如C++,perl或C#,但同时真的很容易.我正在使用JetBrains的Pycharm,当我定义一个函数时,它要求我添加一个"Documentation String Stub",当我点击yes时它会添加如下内容:
"""
"""
Run Code Online (Sandbox Code Playgroud)
所以函数的完整代码是这样的:
def otherFunction(h, w):
"""
"""
hello = h
world = w
full_word = h + ' ' + w
return full_word
Run Code Online (Sandbox Code Playgroud)
我想知道这些(""""")符号是什么意思,谢谢.