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

发布时间:2024年01月14日
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.

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

文章来源:https://blog.csdn.net/m0_56501550/article/details/135586545
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。