2018年8月15日
摘要: 函数的参数: 形参中的 默认参数: 形参中的默认参数陷井: 写一个不函数:输入学生信息: 阅读全文
posted @ 2018-08-15 12:12 yellwonfin 阅读(213) 评论(0) 推荐(0) 编辑
  2018年8月14日
摘要: You can easily override the methos of the base class by press Ctrl + 0 ( code | override methods) Yon can use colors to distinguish your data sources 阅读全文
posted @ 2018-08-14 14:08 yellwonfin 阅读(520) 评论(0) 推荐(0) 编辑
  2018年8月13日
摘要: 阅读全文
posted @ 2018-08-13 16:58 yellwonfin 阅读(218) 评论(0) 推荐(0) 编辑
摘要: 列表的sort()操作:注意事项 阅读全文
posted @ 2018-08-13 16:45 yellwonfin 阅读(154) 评论(0) 推荐(0) 编辑
摘要: 在pycharm中,打的断点,仅在调试模式下,即debug 模式下,才有效 Use Alt + Shift + C to quickly review your recent changes to the project. Use Basic Completion ( Ctrl + 空格 )with 阅读全文
posted @ 2018-08-13 14:29 yellwonfin 阅读(974) 评论(0) 推荐(0) 编辑
摘要: 切片是属于 浅拷贝 判断一个 键 是否在字典中的语法? 判断一个 元素 是否在列表中的语法? 关于列表、字典 添加元素时的注意: python也有三目运算,我们知道在java中为 x ? True : False 关于切片,和代码块的补充: for 也有 else ,continue , break 阅读全文
posted @ 2018-08-13 10:07 yellwonfin 阅读(184) 评论(0) 推荐(0) 编辑
  2018年8月12日
摘要: python2.x 与 python3.x 的区别: 1. python2.x 的源码编码不规范,源码重复较多;python3.x 的源码编码规范,清晰、优美、简单 2. python2.x的默认字符集编码为ASCII,而python3.x 默认字符编码为UTF-8;因此表现就是python2默认是 阅读全文
posted @ 2018-08-12 13:51 yellwonfin 阅读(1819) 评论(0) 推荐(0) 编辑
  2018年8月11日
摘要: 小甜点: 七步记忆法 第一步: 预习 第二步:听课 第三步:课间练习 第四步:下午或者晚上练习。 (大量的) 第五步:晚上睡觉前,回忆。花5-10分钟。 第六步:每天早晨 第七步:每周总结 代码块: 一个函数,一个文件,一个模块,一个类,一个文件,交互模式下,每一行就是一个代码块。 is ---id 阅读全文
posted @ 2018-08-11 20:10 yellwonfin 阅读(374) 评论(0) 推荐(0) 编辑
摘要: 一、基础数据类型的坑: 元组: 如果一个元组中,只有一个元素,且没有逗号,则该"元组"与里面的数据的类型相同。 那么,在只有一个元素的情况下,如何让元组成其为元组呢?方法就是,在数据的后面,加一个逗号。 列表: 将列表中,索引为奇数的元素,全部删除掉。 字典: fromkeys() 创建字典的三种方 阅读全文
posted @ 2018-08-11 13:29 yellwonfin 阅读(184) 评论(0) 推荐(0) 编辑
  2018年8月9日
摘要: 一、什么是代码块? 根据官网提示我们可以获知: A Python program is constructed from code blocks. A block is a piece of Python program text that is executed as a unit. The fo 阅读全文
posted @ 2018-08-09 16:25 yellwonfin 阅读(394) 评论(0) 推荐(0) 编辑