鱼C论坛

 找回密码
 立即注册
查看: 2323|回复: 2

[已解决]谁能解释一下这个循环

[复制链接]
发表于 2020-11-29 19:13:10 | 显示全部楼层 |阅读模式
9鱼币
求解释,江湖救急!!!!!!
最佳答案
2020-11-29 19:13:11
matrix = [[1,2,3],[4,5,6],[7,8,9]]
for i in matrix:  # i依次为[1,2,3]\[4,5,6]\[7,8,9]
    for each in i: # 第1次为for each in [1,2,3]
        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.
屏幕截图 2020-11-29 191226.png

最佳答案

查看完整内容

=========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 ...
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-11-29 19:13:11 | 显示全部楼层    本楼为最佳答案   
matrix = [[1,2,3],[4,5,6],[7,8,9]]
for i in matrix:  # i依次为[1,2,3]\[4,5,6]\[7,8,9]
    for each in i: # 第1次为for each in [1,2,3]
        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.

评分

参与人数 1荣誉 +5 鱼币 +1 贡献 +3 收起 理由
南城转暖 + 5 + 1 + 3 谢谢

查看全部评分

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 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荣誉 +5 鱼币 +5 贡献 +3 收起 理由
南城转暖 + 5 + 5 + 3 谢谢你们

查看全部评分

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-17 06:10

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表