error
千码君2016
高级软件研发工程师,云计算网络虚拟化技术专家
展开
-
Python:常见error汇总
TypeError: string indices must be integers #TypeError:字符串索引必须是整数 TypeError: 'str' object does not support item assignment #TypeError:“str”对象不支持项分配 test_dict = {} test_dict['a'] = 'a' test_dict['a']['b'] = 'b' print(test_dict) ...原创 2020-06-20 15:21:30 · 660 阅读 · 0 评论 -
06-Docker-Centos 7.2 (Vmware最小化安装)之一篇搞定hyperledger/fabric的e2e_cli测试运行所遇到的ERROR总结
bug产生原因分析如下: 1、系统过于单纯或复杂(即最小化安装与全部安装以及自行安装了很多软件),很多命令和工具无法使用和执行或冲突 2、自己操作失误,敲错代码(关键词和语法)写错单词(一时不注意)多敲了空格键或者回车键(手抖了一下) 3、配置文件凌乱,再改动了相关的配置文件之后未能保存完好或者根本不清楚配置文件的作用乱作一通 4、版本不匹配,在GitHub上或者其他的代码托管平台上都是有tag、...原创 2018-04-02 11:57:57 · 798 阅读 · 0 评论 -
Python实现杨辉三角的几种形式
境界一、这个非常直接和苍白,值得注意的是对象之间的引用与复制,要确定是否只是引用的改变或者是否在内存堆中创建实体的副本。L = t 就是引用的拷贝,而L = t.copy()是内容级别的较深的拷贝。def yanghui(max): t = [1] n = 1 while n<max: print(t) if n>0: ...原创 2018-04-14 17:02:39 · 3056 阅读 · 0 评论 -
The origin server did not find a current representation for the target resource or is not willing t
The origin server did not find a current representation for the ta The origin server did not find a current representation for the target resource or is not willing to disclose that one exists. 汗...原创 2018-12-25 16:38:19 · 1851 阅读 · 0 评论