1
摘要: 1,有变量name = "aleX leNb" 完成如下操作: name = " aleX leNb" print(name.strip()) name ="aleX leNb" print(name.lstrip("al")) name="aleX leNb" print(name.rstrip( 阅读全文
posted @ 2018-01-23 21:17 萌哥-爱学习 阅读(275) 评论(0) 推荐(0) 编辑
摘要: 1. INT 型 2. 布尔值bool 布尔值值分为两种:True ,False ,就是反应条件的正确与否 真 1 True 假 0 False int-->str str(int) str-->int int(str) int >bool 0 代表false 非零代表True str >bool 阅读全文
posted @ 2018-01-23 15:13 萌哥-爱学习 阅读(237) 评论(0) 推荐(0) 编辑
摘要: 2、os.path.join()函数 语法: os.path.join(path1[,path2[,......]]) 返回值:将多个路径组合后返回 注:第一个绝对路径之前的参数将被忽略 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 阅读全文
posted @ 2018-01-23 15:04 萌哥-爱学习 阅读(227) 评论(0) 推荐(0) 编辑
摘要: 1、判断下列逻辑语句的True,False. 1),8 or 3 and 4 or 2 and 0 or 9 and 7 7 2),0 or 2 and 3 and 4 or 6 and 0 or 3 3 3、下列结果是什么? 1)、6 or 2 > 1 6 2)、3 or 2 > 1 3 3)、0 阅读全文
posted @ 2018-01-23 09:46 萌哥-爱学习 阅读(319) 评论(0) 推荐(0) 编辑