Pricing
Learn
Code
Deploy
More
def mygeb(x,y): while x<=y: yield x x+=1 g=mygen(5,10) for i in g: print(i,end='')
created 4 years ago