xgqfrms™, xgqfrms® : xgqfrms's offical website of GitHub!

Python Tutorials



Real Python

https://realpython.com/

https://realpython.com/courses/

https://realpython.com/learning-paths/

SoloLearn

Python

https://www.sololearn.com/Course/Python/

string

Python Docstring

a string literal that occurs as the first statement in a module, function, class, or method definition

https://www.python.org/dev/peps/pep-0257/


def kos_root():
    """Return the pathname of the KOS root directory."""
    global _kos_root
    if _kos_root: return _kos_root


def complex(real=0.0, imag=0.0):
    """Form a complex number.

    Keyword arguments:
    real -- the real part (default 0.0)
    imag -- the imaginary part (default 0.0)
    """
    if imag == 0.0 and real == 0.0:
        return complex_zero


refs

Python 3.8.3

https://docs.python.org/3/tutorial/


Flag Counter

©xgqfrms 2012-2020

www.cnblogs.com 发布文章使用:只允许注册用户才可以访问!


原文地址:https://www.cnblogs.com/xgqfrms/p/13390408.html