#創(chuàng)建于2017年12月6日 a=1 b=2 print (a+b) c=[1,2,3] print (c[1],'\n',c*2) c2=[i*2 for i in c] print (c2)