鱼C论坛

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

[已解决]这个for循环怎么破??想半天想不出

[复制链接]
发表于 2022-10-28 17:18:41 | 显示全部楼层 |阅读模式
10鱼币
from itertools import combinations
a = [1,2,3,4,5,6,7]
def aa():
    return list(combinations(a,6))
ss = aa()
for i in ss:
    print(i)

这段代码会打印7个元组。。。插入什么代码可以让他们。。每打印一次加一个空行。。每打印5次加一行"==============="
脑子不够用了!!
最佳答案
2022-10-28 17:18:42
from itertools import combinations
a = [1,2,3,4,5,6,7]
def aa():
    return list(combinations(a,6))
ss = aa()
count = 0
for i in ss:
    count += 1
    print(i)
    print()
    if count == 5:
        print('===============')
        count = 0
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2022-10-28 17:18:42 | 显示全部楼层    本楼为最佳答案   
from itertools import combinations
a = [1,2,3,4,5,6,7]
def aa():
    return list(combinations(a,6))
ss = aa()
count = 0
for i in ss:
    count += 1
    print(i)
    print()
    if count == 5:
        print('===============')
        count = 0
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2022-10-28 17:39:14 | 显示全部楼层
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

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

本版积分规则

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

GMT+8, 2024-12-25 09:35

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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