This website works better with JavaScript
ホーム
エクスプローラ
ヘルプ
サインイン
jack
/
cocorobolx
ウォッチ
1
スター
0
フォーク
0
ファイル
課題
0
Wiki
ブランチ:
master
ブランチ
タグ
master
cocorobolx
/
python
/
skulpt
/
test
/
run
/
t180.py
t180.py
129 B
パーマリンク
履歴
Raw
1
2
3
4
5
6
7
8
9
10
def f(n):
i = 0
while i < n:
yield i
i = 100
yield i
i += 1
for i in f(50):
print i