摘要:
控制结构 if 语句 # only if block if condition: if_true_block # if_else block if condition: if_true_block else: if_false_block # if_elif_else block if condit 阅读全文
摘要:
开发规范 文件名以.py 结束 注意加注释 解释器路径 #!/usr/bin/env/python 编码 # -*- coding='utf-8' -*-#python3 无需关注,python2 出现中文必须加入此注释 python 模块结构和布局 #建议结构如下: #(1) 起始行(解释器 #! 阅读全文
摘要:
1 coding 注释在python3可以不加,python2只要出现中文的就必须加 # --coding=utf-8-- print '泡泡' 2整形 python2 有长整型概念, python3没有长整型概念 阅读全文
摘要:
1缩进错误 IndentationError: unexpected indent ttt1=1 ttt2=2 2 语法错误 SyntaxError: invalid syntax printf 'ffff' SyntaxError: keyword can't be an expression t 阅读全文