python的库或函数不会用:使用help函数查看函数

help(time) # 查看time这个库
FUNCTIONS #函数;都可以调用
    asctime(...)
        asctime([tuple]) -> string  #调用这个函数的参数需要一个元组(tuple),->:代表返回值是string类型的
        #下面是简单的介绍
        Convert a time tuple to a string, e.g. 'Sat Jun 06 16:26:11 1998'. #把一个时间元组转换成字符串类型的,比如( e.g).一个简单的调用例子
        When the time tuple is not present, current time as returned by localtime()
        is used.

位置参数、默认参数、不定长参数、关键字参数、位置参数 

python的库或函数不会用:使用help函数查看函数_第1张图片

你可能感兴趣的:(数学建模美赛,Python,追梦算法,python)