这道题的答案是什么?

来源:4-7 Python之continue继续循环

旭5297137

2023-04-13 11:12

这道题的答案是什么?
写回答 关注

1回答

  • top_zq
    2025-07-22 21:57:05

    # Enter a code

    s1 = '123'

    s2 = 'ABC'

    s3 = 'xyz'

    for c in s1:

        for c2 in s2:

            for c3 in s3:

                print(c+c2+c3)


Python3 入门教程(新版)

python3入门教程,让你快速入门并能编写简单的Python程序

163176 学习 · 1129 问题

查看课程

相似问题