forked from qiwsir/StarterLearningPython
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path21401.py
41 lines (36 loc) · 869 Bytes
/
21401.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#!/usr/bin/env python
# coding=utf-8
"""
the interator as range()
"""
class MyRange(object):
def __init__(self, n):
self.i = 1
self.n = n
def __iter__(self):
return self
def next(self):
if self.i <= self.n:
i = self.i
self.i += 1
return i
else:
raise StopIteration()
if __name__ == "__main__":
x = MyRange(3)
print "self.n=",x.n,";","self.i=",x.i
x.next()
print "self.n=",x.n,";","self.i=",x.i
x.next()
print "self.n=",x.n,";","self.i=",x.i
x.next()
print "self.n=",x.n,";","self.i=",x.i
x.next()
print "self.n=",x.n,";","self.i=",x.i
#print [i for i in x]
#print list(x)
#print "x.next()==>", x.next()
#print "x.next()==>", x.next()
#print "------for loop--------"
#for i in x:
# print i