编程笔记
cpopttt
这个作者很懒,什么都没留下…
展开
-
os.path.join()
os.path.join()函数功能:连接两个或更多的路径名组件如果各组件名首字母不包含’/’,则函数会自动加上如果有一个组件是一个绝对路径,则在它之前的所有组件均会被舍弃如果最后一个组件为空,则生成的路径以一个’/’分隔符结尾os.path.join()_谢军的博客-CSDN博客_os.path.join(...原创 2022-03-15 10:12:06 · 115 阅读 · 0 评论 -
assert()函数
函数名:assert()原型:void assert( int expression )功能:如果形参为假则终止程序参数:真或假 注意:每个assert只能检查一个条件,如果多个条件不好判断是哪个条件的错误具体:如果形参数为假,assert 向 stderr打印一条出错信息, 信息包含文件名、表达式、行号,然后调用abort终止程序 如果形参为真,程序继续执行优点:可以方便我们进行程序调试,同时对于绝对不能出错(条件为假)的地方使用可以有效的预防出现更多...原创 2022-03-15 09:47:31 · 221 阅读 · 0 评论 -
python计算机CPU使用时间
#该方法包含了其他程序使用CPU的时间,返回值是浮点数import timestart=time.time()#中间写上代码块end=time.time()print('Running time: %s Seconds'%(end-start))原创 2022-03-07 10:07:39 · 1081 阅读 · 0 评论 -
python把列表变成字符串
>>> a=["1","2","3","4","5"]#列表中的元素全是str类型>>>print(" ".join(a))#把列表中的元素放在空串了,并打印出空串中的内容12345原创 2022-03-04 10:07:18 · 427 阅读 · 0 评论 -
python判断是否为中文、中文符号、英文、英文符号
def is_Chinese(w): if '\u4e00' <= w <= '\u9fff': return Truedef is_zh_punctuation(w): punctuation_str = punctuation #中文符号 if w in punctuation_str: return Truedef is_en(w): if 'a'<=w<='z' or 'A'<=w<='Z'.原创 2022-03-03 17:57:50 · 4723 阅读 · 2 评论 -
itertools.permutations函数
几个数字的排列组合>>> import itertools>>> list(itertools.permutations([1,2,3], 3))[(1, 2, 3), (1, 3, 2), (2, 1, 3), (2, 3, 1), (3, 1, 2), (3, 2, 1)]>>> list(itertools.permutations([4,5,6], 3))[(4, 5, 6), (4, 6, 5), (5, 4, 6), (5,原创 2022-03-02 16:31:21 · 260 阅读 · 0 评论