
Python
lzx8023
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Python写的九九乘法表
[code="java"]for i in range(1,10): result = '' for j in range(1,10): if j > i: break else: result += str(i) + "*" + str(j) + "=" + str(i*j) + " " print(result)[/code][img]h...原创 2015-08-13 15:46:35 · 191 阅读 · 0 评论 -
python代码运行出现以下异常
python代码运行出现以下异常:IndentationError: unindent does not match any outer indentation level[img]http://dl2.iteye.com/upload/attachment/0110/9442/84817354-6868-3d25-b3c6-40aa36913730.png[/img]可能导致...原创 2015-08-13 17:45:15 · 242 阅读 · 0 评论