用户:
轮回的写作龖查看:16 回复:8 评论:16 创建时间:2020-03-07T14:02:03
这里可以打小说广告但是不可以打作品广告···然后就是不可以骂人···
轮回的写作龖我的小说:https://shequ.codemao.cn/wiki/novel/cover/57237 MC本人姓潘的小说:https://shequ.codemao.cn/wiki/novel/cover/57464
点赞0
评论
好玩好玩
a=iter(['s','c','r','a','t','c','h','最','棒'])
for i in range(9):
print(next(a))点赞0
评论
我看你怎么停:
while 1>-3984923:
try:
print "HI"
except KeyboardInterrupt:
print "You press Ctrl+c"
点赞0
评论
超级函数回环
带你见识一下递归深度
def a(num,func):
print(num+1)
return func(num+1,b)
def b(num,func):
print(num+2)
return func(num+2,c)
def c(num,func):
print(num+2)
return func(num+2,a)
a(1,b)点赞0
评论