创建列表adj = ["red", "big", "tasty"] fruits = ["apple", "banana", "cherry"] 利用for循环打印每个水果的每个形容词。结果显示如下: red apple big banana tasty cherry
时间: 2024-04-05 16:28:13 浏览: 107
用列表框制作的属性列表
你可以使用嵌套的for循环来打印每个水果的每个形容词。首先,你需要创建两个列表adj和fruits,然后使用两个嵌套的for循环来遍历这两个列表,并打印每个水果和形容词的组合。
下面是实现这个功能的代码示例:
adj = ["red", "big", "tasty"]
fruits = ["apple", "banana", "cherry"]
for a in adj:
for f in fruits:
print(a, f)
这段代码会输出以下结果:
red apple
red banana
red cherry
big apple
big banana
big cherry
tasty apple
tasty banana
tasty cherry
阅读全文