2019年6月30日

摘要: 1.pyhon中 == 和 is 的区别 阅读全文
posted @ 2019-06-30 19:27 轻狂书生QAQ 阅读(128) 评论(0) 推荐(0) 编辑

2019年6月29日

摘要: 序列(seqence) 是指他的成员都是有序排列,并且可以通过索引偏移量访问到他的一个或几个成员 序列有:字符串、列表、元组 序列的基本操作: 1 in/not in seqence2 切片3 步长4 删除(del且支持切片/pop())5 序列+序列6 索引便宜7 len(seqence) 函数8 阅读全文
posted @ 2019-06-29 23:24 轻狂书生QAQ 阅读(172) 评论(0) 推荐(0) 编辑

2019年6月28日

摘要: git init 用于初始化,用于让git管理当前文件夹 git config --global user.email "123@123.com" 配置本地git邮箱地址 git config --global user.name "xiaozhupeiqi" 配置本地git用户名 git add 阅读全文
posted @ 2019-06-28 23:38 轻狂书生QAQ 阅读(305) 评论(1) 推荐(0) 编辑
 
摘要: 刚开始学习python,后面会持续更新 基本数据类型有:数字(int/float)、字符串(str)、布尔(bool)、列表(list)、元组(tuple)、字典(dictionary)、集合(set) python中的数据类型 基本数据类型有:数字(int/float)、字符串(str)、布尔(b 阅读全文
posted @ 2019-06-28 23:23 轻狂书生QAQ 阅读(260) 评论(0) 推荐(0) 编辑
 
摘要: 刚开始学习python,后面会一直补充 1.默认解释器编码不一样 a.python2 默认是ascii b.python3 默认是utf-8 c.解决方法是,在py文件头加入:#-*- coding:utf-8 -*- 2.输入不同 a.python2中输入是:row_input() b.pytho 阅读全文
posted @ 2019-06-28 23:22 轻狂书生QAQ 阅读(206) 评论(0) 推荐(0) 编辑