为了账号安全,请及时绑定邮箱和手机立即绑定

将%格式更改为f字符串

将%格式更改为f字符串

蛊毒传说 2021-03-30 17:53:08
colors = ['black', 'white']sizes = ['S', 'M', 'L']for tshirt in ('%s %s' % (c, s) for c in colors for s in sizes):    print(tshirt)black Sblack Mblack Lwhite Swhite Mwhite L所以我试图删除那些%s%s,而是使用af字符串格式。有人可以表现出如何做到这一点吗?谢谢
查看完整描述

2 回答

?
SMILET

TA贡献1796条经验 获得超4个赞

>>> colors = ['black', 'white']

>>> sizes = ['S', 'M', 'L']

>>> for c in colors:

...    for s in sizes:

...        print(f'{c} {s}')

另一种方法是使用itertools.product:


>>> for c, s in itertools.product(colors, sizes):

...     print(f'{c} {s}') 


查看完整回答
反对 回复 2021-04-27
  • 2 回答
  • 0 关注
  • 149 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信