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.