南城转暖 发表于 2020-11-29 19:13:10

谁能解释一下这个循环

求解释,江湖救急!!!!!!

笨鸟学飞 发表于 2020-11-29 19:13:11

matrix = [,,]
for i in matrix:# i依次为\\
    for each in i: # 第1次为for each in
      print(each,end=' ') # 打印each,结尾由默认的换行符改为空格
    print() # 打印空行,第1次打印完1 2 3后加换行
=========print()函数详解
>>> help(print)
Help on built-in function print in module builtins:

print(...)
    print(value, ..., sep=' ', end='\n', file=sys.stdout, flush=False)
   
    Prints the values to a stream, or to sys.stdout by default.
    Optional keyword arguments:
    file:a file-like object (stream); defaults to the current sys.stdout.
    sep:   string inserted between values, default a space.
    end:   string appended after the last value, default a newline.
    flush: whether to forcibly flush the stream.

suchocolate 发表于 2020-11-29 19:18:25

本帖最后由 suchocolate 于 2020-11-29 19:20 编辑

i循环3个列表,each循环每个内层列表元素。
第1种只有1个print,每打印一个元素换一行。
第2种有2个print,第一个print设置end为空格,不换行,第二个print输出换行。
页: [1]
查看完整版本: 谁能解释一下这个循环