摘要:
#先要认识列表生成器a = [x*2 for x in range(10)]#他其实就是等于# b = []# for x in range(10):# b.append(x *2)# print(a,'\n',b)#把[]改成()就是生成器c = (x*2 for x in range(10))p 阅读全文
摘要:
Somehow, it seems the love I knew was always the most destructive kind 不知为何,我经历的爱情总是最具毁灭性的的那种 Yesterday when I was young 昨日当我年少轻狂 The taste of life wa 阅读全文