摘要:
>>> a = (i for i in range(10))>>> while True:... print(next(a))...0123456789Traceback (most recent call last): File "<stdin>", line 2, in <module>Stop 阅读全文
摘要:
user_state = Falsedef login(auth_tpye): def out(func): def inner(*args,**kwargs): global user_state db = {'kingforn': 'abc123', 'alex': 'abc!@#'} if u 阅读全文