python for 循环语句

Posted 笨丫头就是笨

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python for 循环语句相关的知识,希望对你有一定的参考价值。

 

 

student = [\'Jack\', \'Tom\', \'John\']
for i in student:
    print(i)

 

favorit_places= {\'小明\':{\'海水浴场\', \'八大关\', \'五四广场\'},
                \'小红\':{\'海洋大学\', \'海底世界\', \'崂山\'},
                \'小白\':{\'中山公园\', \'八大关\', \'五四广场\'},
                }
for k,v in favorit_places.items():
    print(k+\':\')
    if(len(v)>0):
        for place in v:
            print(\'\\t\',place)

 

#九九乘法表
for i in range(1, 10):
    for j in range(1, i+1):
        print(\'%d*%d=%d\' % (j, i, (j*i)), end=\'\\t\')
    print()

 

以上是关于python for 循环语句的主要内容,如果未能解决你的问题,请参考以下文章

Python for循环使用 else 语句

python的for循环语句怎么写

python中for循环语句

Python的for循环与while语句

python循环语句

值得收藏!16段代码入门Python循环语句