摘要:
lista = [] lista = lista + 'abc' print lista 报错提示只有列表才能与列表连接。 lista = [] lista = lista + 'abc' print lista 顺利执行,打印输出:['a', 'b', 'c'] 可以看到+=是有个类似于C语言的类 阅读全文
摘要:
错误makefile, line 30 make Dependency line needs colon or double colon operator的解决方法使用makefile编译文件时,执行make命令报如下错误。"makefile", line 30: make: Dependency ... 阅读全文
摘要:
出现Display all 1710 possibilities? (y or n)的原因现象如下出现这种现象的原因是在什么也没有输入的情况下连续按两次tab键。出现Display all 1710 possibilities? (y or n)之后,只要按n就会返回命令行了,对系统或其他进程不会产... 阅读全文