Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d310048 commit ae2114aCopy full SHA for ae2114a
README.md
@@ -5,6 +5,7 @@
5
6
## 代码规范
7
* http://ssv.sebug.net/Python_Coding_Rule
8
+
9
## 学习资源
10
* [简明 Python 教程](http://sebug.net/paper/python/index.html)
11
* [crossin的编程教室](http://crossin.me/forum.php?mod=forumdisplay&fid=2)
loop.py
@@ -0,0 +1,31 @@
1
+# range(start, stop[, step])
2
+for i in range(0,5):
3
+ print i;
4
+print '==============';
+for i in range(0,5,2):
+for i in [0, 1, 2]:
12
+print '=====for end =========';
13
14
+i = 0;
15
+while i < 5:
16
17
+ i+=1;
18
19
20
21
22
+while True:
23
+ if i >= 5:
24
+ break;
25
+ else:
26
27
+ if i % 2 == 1:
28
+ continue;
29
30
31
0 commit comments