Raul2018

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 20 下一页

2019年3月7日

摘要: 简述: *args: 可变长度元组参数 **kwargs: 可变长度字典参数 详解:【*args】:可变长度元组参数例1: def hello_args(para1, *args): print("para1 :", para1) for arg in args: print("args:", ar 阅读全文
posted @ 2019-03-07 08:28 Raul2018 阅读(217) 评论(0) 推荐(0) 编辑

2019年3月4日

摘要: newline controls how universal newlines mode works (it only applies to text mode). It can be None, '', '\n', '\r', and '\r\n'. It works as follows: [. 阅读全文
posted @ 2019-03-04 16:30 Raul2018 阅读(1408) 评论(0) 推荐(0) 编辑

2019年2月28日

摘要: From: https://www.cnblogs.com/feiyi211/p/6626314.html 一. fixture介绍 fixture是pytest的一个闪光点,pytest要精通怎么能不学习fixture呢?跟着我一起深入学习fixture吧。其实unittest和nose都支持fi 阅读全文
posted @ 2019-02-28 21:34 Raul2018 阅读(167) 评论(0) 推荐(0) 编辑

2019年2月25日

摘要: 在Dev分支上新建一个分支(可以通过Git TE网页创建) 然后就可以从Source下拉列表中看到新建的分支(new_name1)了。 远程分支创建完成之后,就可以在本机上面使用Git GUI Here去拉远程的分支到本地: 1)在适当目录下右键->Git GUI Here 2)Clone Exis 阅读全文
posted @ 2019-02-25 14:14 Raul2018 阅读(1308) 评论(0) 推荐(0) 编辑

2019年2月12日

摘要: From: http://www.differencebetween.net/technology/software-technology/difference-between-git-and-svn/#ixzz5fIoQsWBP Git vs SVN Git and SVN are both so 阅读全文
posted @ 2019-02-12 16:11 Raul2018 阅读(159) 评论(0) 推荐(0) 编辑

摘要: From: https://wenku.baidu.com/view/1f090e2e7275a417866fb84ae45c3b3567ecdd12.html Git和Svn对比 Git和Svn对比 Git和Svn对比 Git和Svn对比 Git和Svn对比 Git和Svn对比 Git和Svn对比 阅读全文
posted @ 2019-02-12 11:59 Raul2018 阅读(219) 评论(0) 推荐(0) 编辑

摘要: From: https://blog.csdn.net/skyxmstar/article/details/65631658 git和github是两个完全不同的概念。git 是一个版本管理工具,是可以在你电脑不联网的情况下,只在本地使用的一个版本管理工具,其作用就是可以让你更好的管理你的程序,比如 阅读全文
posted @ 2019-02-12 09:29 Raul2018 阅读(231) 评论(0) 推荐(0) 编辑

2019年2月2日

摘要: From: https://www.cnblogs.com/restart/p/4633928.html 如果git无法通过普通的http去clone远程分支,可以选用ssh方式去连接。这时需要配置相应的公私钥(本地生成公私钥对儿,把公钥配置到远程git服务器上即可)。 具体的错误提示如下: 要de 阅读全文
posted @ 2019-02-02 08:56 Raul2018 阅读(811) 评论(0) 推荐(0) 编辑

2019年1月31日

摘要: From: https://www.jianshu.com/p/54b0f4016300 一. fixture介绍 fixture是pytest的一个闪光点,pytest要精通怎么能不学习fixture呢?跟着我一起深入学习fixture吧。其实unittest和nose都支持fixture,但是p 阅读全文
posted @ 2019-01-31 08:35 Raul2018 阅读(222) 评论(0) 推荐(0) 编辑

2019年1月7日

摘要: From: http://www.ruanyifeng.com/blog/2015/12/git-cheat-sheet.html?tdsourcetag=s_pcqq_aiomsg 我每天使用 Git ,但是很多命令记不住。 一般来说,日常使用只要记住下图6个命令,就可以了。但是熟练使用,恐怕要记 阅读全文
posted @ 2019-01-07 21:43 Raul2018 阅读(113) 评论(0) 推荐(0) 编辑

上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 20 下一页