06 2019 档案

摘要:http://blog.chinaunix.net/uid 28631822 id 3488324.html 具体内容需要进一步学习 阅读全文
posted @ 2019-06-02 14:52 喵喵小学僧 阅读(171) 评论(0) 推荐(0)
摘要:使用Git 参考文献:https://www.liaoxuefeng.com/wiki/896043488029600/899998870925664 1. Git下载安装 2. 新建版本库 1.创建空目录 2.git init 3. 提交文件到版本库 1.git add file 2.git co 阅读全文
posted @ 2019-06-01 20:50 喵喵小学僧 阅读(109) 评论(0) 推荐(0)
摘要:上述代码报错: 原因:SyntaxError: non default argument follows default argument def StudentInfo(country='中国', name): ^ 上述代码报错: 原因:SyntaxError: positional argume 阅读全文
posted @ 2019-06-01 16:47 喵喵小学僧 阅读(435) 评论(0) 推荐(0)
摘要:格式化输出 https://www.cnblogs.com/fat39/p/7159881.html tag2 % 字符串输出 %s %10s——右对齐,占位符10位 % 10s——左对齐,占位符10位 %.2s——截取2位字符串 %10.2s——10位占位符,截取两位字符串 浮点数输出 %f —— 阅读全文
posted @ 2019-06-01 10:27 喵喵小学僧 阅读(340) 评论(0) 推荐(0)