摘要:
1.unexpected unident (无法预料的缩进)python依靠indent来缩进。要么全部用空格缩进,要么全部tab键,所以我觉得你的问题是可能缩进有问题。用有些编辑器可以显示tab和空格的。Python对缩进要求很严格的。多行注释符号本身也需要注意缩进。下面的内容会根据上面的多行注释... 阅读全文
摘要:
1. 问题1: sublime text3 中输入汉字,程序正常运行,但是python控制台却无法显示中文。2. 解决方法: 1)安装了ConvertToUTF8 插件但是还是不行。:http://segmentfault.com/a/1190000002461891 2)打开“Tools-->... 阅读全文
摘要:
问题:print "hello" SyntaxError: Missing parenthesesin call to 'print'解决:python3取消了这种用法。使用 print('hello"),这种来输出。python3 语法 和 python2 已经变得有些差别了。python3中,去... 阅读全文
摘要:
# 帮助文档1、dir函数式可以查看对象的属性:Python命令窗口输入 dir(str) 即可查看str的属性。2.如何查看对象某个属性的帮助文档 ? 如要查看str的split属性,可以用__doc__(双下划线), 使用方法为print(str.split.__doc__) 或者help函... 阅读全文
摘要:
python实例:backup 备份本文来源于《python简明教程》中的实例1.提出问题: 我想要一个可以为我的所有重要文件创建备份的程序。2. 分析明确问题:我们如何确定该备份哪些文件?备份保存在哪里?我们怎么样存储备份?3. 设计程序列表: 1). 需要备份的文件和目录由一个列表指定。 2)... 阅读全文
摘要:
def printMax(x, y): '''Prints the maximum of two numbers. The two values must be integers.''' x = int(x) # convert to integers, if possible y = in... 阅读全文
摘要:
1. 问题描述:自己在st3中安装了pylinter插件,但是没有成功,出现如下错误:"Pylinter could not automaticallydetermined the path to lint.py. Please provide one in the settings file us... 阅读全文
摘要:
一、 notepad++ 配置python开发环境 1)Notepad++ ->"运行"菜单->"运行"按钮中输入: cmd /k python "$(FULL_CURRENT_PATH)" & ECHO. & PAUSE & EXIT 注意:此时cmd命令行窗口一定要关闭,不然配置不成功,会显示... 阅读全文
摘要:
条件:windows7 ,32位,python3.4 Notepad++
1. 安装后 "Notepad++配置Python开发环境" 2. 运行notepad中python出现SyntaxError:invalid syntax错误
这是python交互环境的问题,不是代码语法问题。保存... 阅读全文
摘要:
shell 与windows下的cmd区别 http://segmentfault.com/q/1010000000316935首先说shell,shell直接翻译就是壳,按照ABS的定义,shell是The shell is a command interpreter. More than jus... 阅读全文