摘要: # -*- coding: utf-8 -*- import os import sys import time # Sets how many days old files are deleted # To delete the path and the following subfiles cl 阅读全文
posted @ 2020-01-09 16:48 cknds 阅读(707) 评论(0) 推荐(0) 编辑
摘要: 总结一下Python解释器包含的一系列的内置函数,下面表格按字母顺序列出了内置函数: 下面就一一介绍一下内置函数的用法: 1、abs() 返回一个数值的绝对值,可以是整数或浮点数等。 print(abs(-18)) print(abs(0.15)) result: 18 0.15 2、all(ite 阅读全文
posted @ 2020-01-09 09:16 cknds 阅读(5014) 评论(0) 推荐(0) 编辑