python中的if、while、for

1、python的缩进 2、if 、 while、for语句 个人感觉三个语句当中if最容易理解,举个if的例子,注意冒号,注意缩进: name = 'aaa' if name == 'aaa': print 'this is aaa' elif name== 'bbb': print 'this is bbb' else: print 'others' while
相关文章
相关标签/搜索