Chinaunix首页 | 论坛 | 博客
  • 博客访问: 9151626
  • 博文数量: 1727
  • 博客积分: 12961
  • 博客等级: 上将
  • 技术积分: 19860
  • 用 户 组: 普通用户
  • 注册时间: 2009-01-09 11:25
个人简介

偷得浮生半桶水(半日闲), 好记性不如抄下来(烂笔头). 信息爆炸的时代, 学习是一项持续的工作.

文章分类

全部博文(1727)

文章存档

2024年(3)

2023年(26)

2022年(112)

2021年(217)

2020年(157)

2019年(192)

2018年(81)

2017年(78)

2016年(70)

2015年(52)

2014年(40)

2013年(51)

2012年(85)

2011年(45)

2010年(231)

2009年(287)

发布时间:2018-01-09 17:15:35

模块的搜索路径: 1. 首先从 sys.path中寻找,   2. 从 环境变量 PYTHONPATH中寻找.模块导入: 会导入模块的所有对象,包括变量, 函数,数据类型和子模块,  除了以下划线引导的对象(私有对象)import importableimport importable1, importable1, importable2...import importable as preferred_name  #.........【阅读全文】

阅读(1001) | 评论(0) | 转发(0)

发布时间:2018-01-05 14:40:19

点击(此处)折叠或打开if bool_expr1:suite1elif bool_expr2:suite2else:suite_else缩编方式expr1 if bool_expr else expr2综合示例 print("{0} f.........【阅读全文】

阅读(1364) | 评论(0) | 转发(0)

发布时间:2018-01-04 17:45:41

元组列表字典集合结构体序列类型: 支持 in len() 分片.    bytearray  bytes  list  str  tuple collections.namedtuple(命名元组)----------------------------------------------------------------------------------------------------------------------元组: tuple  &n.........【阅读全文】

阅读(1283) | 评论(0) | 转发(0)

发布时间:2018-01-03 18:18:52

关键字:点击(此处)折叠或打开and    continue  except   global   lambda   pass     whileas     def       False    if       None  &.........【阅读全文】

阅读(1261) | 评论(0) | 转发(0)

发布时间:2018-01-03 15:20:43

Python3.x 程序开发指南......【阅读全文】

阅读(1269) | 评论(0) | 转发(0)
给主人留下些什么吧!~~
留言热议
请登录后留言。

登录 注册