上一页 1 ··· 6 7 8 9 10 11 下一页
摘要: 高级特性 切片:list,tuple,str截取用。 阅读全文
posted @ 2017-12-15 14:02 veryvalley 阅读(93) 评论(0) 推荐(0) 编辑
摘要: 作为一个web开发者,http往往是那个即熟悉又陌生的家伙 POST请求头 POST 请求主体 阅读全文
posted @ 2017-12-13 10:01 veryvalley 阅读(120) 评论(0) 推荐(0) 编辑
摘要: 在Form元素的语法中,EncType表明提交数据的格式 用 Enctype 属性指定将数据回发到服务器时浏览器使用的编码类型。 application/x-www-form-urlencoded: 窗体数据被编码为名称/值对。这是标准的编码格式。 multipart/form-data: 窗体数据 阅读全文
posted @ 2017-12-12 15:26 veryvalley 阅读(336) 评论(0) 推荐(0) 编辑
摘要: 1.条件判断 if , elif, else 结尾 ":" 2.循环 for x in range(123): range() 函数:生成一个整数序列 while true: 结尾 ":" 3.raw_input()读取的内容永远以字符串的形式返回 4.dict,类似于map,key-value k 阅读全文
posted @ 2017-12-12 10:54 veryvalley 阅读(146) 评论(0) 推荐(0) 编辑
摘要: git merge 和 git rebase 小结 在不用-f的前提下,想维持树的整洁,方法就是:在git push之前,先git fetch,再git rebase。 阅读全文
posted @ 2017-12-12 10:24 veryvalley 阅读(125) 评论(0) 推荐(0) 编辑
摘要: YEAR ,字节数为1,取值范围为“1901——2155”DATE,字节数为4,取值范围为“1000-01-01——9999-12-31”TIME,字节数为3,取值范围为“-838:59:59——838:59:59”DATETIME,字节数为8,取值范围为“1000-01-01 00:00:00—— 阅读全文
posted @ 2017-12-01 17:57 veryvalley 阅读(5598) 评论(0) 推荐(0) 编辑
摘要: 笨方法 简单方法 阅读全文
posted @ 2017-11-20 16:17 veryvalley 阅读(836) 评论(0) 推荐(0) 编辑
摘要: ##先把远程仓库代码取到本地 git fetch --all ##强制更新到最新代码 git reset --hard [origin]/[master]git merge --abortgit reset --mergegit pull 阅读全文
posted @ 2017-11-17 09:57 veryvalley 阅读(1671) 评论(0) 推荐(0) 编辑
摘要: 在本地新建一个分支: git branch newBranch 切换到你的新分支: git checkout newBranch 创建并切换到新分支: git checkout -b newBranch 将新分支发布在github上: git push origin newBranch 在本地删除一 阅读全文
posted @ 2017-11-15 10:03 veryvalley 阅读(8326) 评论(0) 推荐(0) 编辑
摘要: ... 阅读全文
posted @ 2017-10-10 15:55 veryvalley 阅读(398) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 下一页