好得很程序员自学网

<tfoot draggable='sEl'></tfoot>

python入门之语句(if语句、while语句、for语句)

python入门之语句,包括if语句、while语句、for语句,供python初学者参考。

//if语句例子
name = 'peirong';

if name == 'peirong':
 print 'this is peirong';
elif name== 'maojun':
 print 'this is maojun';
else:
 print 'others';

//while语句
i = 0;
a = range(10);
while i  

查看更多关于python入门之语句(if语句、while语句、for语句)的详细内容...

  阅读:43次