LYLlllhhh 发表于 2021-2-4 16:16:34

又看不懂了

第12讲的6
>>> list3 = for slogan in list1 for name in list2 if slogan == name]
又看不懂了,难{:5_96:}

qiuyouzhi 发表于 2021-2-4 16:23:52

https://fishc.com.cn/thread-158908-1-1.html

逃兵 发表于 2021-2-4 16:46:56

for name in list2:
    for slogan in list1:
      if slogan == name:
            list3.append(name + ':' + slogan )

昨非 发表于 2021-2-4 16:54:24

看看这个
<font color="red">[已解决]</font>鱼C教学python012讲习题不太懂,哪位指导下?
https://fishc.com.cn/thread-128368-1-1.html
(出处: 鱼C论坛)

Twilight6 发表于 2021-2-4 19:29:09


善用论坛的搜索功能哈~

[已解决] Python 第12讲第6题有关列表推导式问题
https://fishc.com.cn/thread-175291-1-1.html

傻眼貓咪 发表于 2021-9-6 14:38:27

list3 =for sloganin list1for name    in list2if slogan == name]

新列表 = [(字符串1 + 字符串2 + 字符串3) for 字符串3 in 舊列表A for 字符串1 in 舊列表B if 條件語句]
页: [1]
查看完整版本: 又看不懂了