• 2022-07-25
    以下关于Python的循环结构说法错误的是(_____)。
    A: break语句用来跳出当前层次的for或者while循环。
    B: for循环中被遍历的部分可以是字符串、文件、组合数据类型和range()函数等。
    C: continue语句用来跳出当前层次的的for或者while循环。
    D: 以下代码的输出包含3个不同的数。n=4
    while n >=0:
    n=n-1
    if n<1:
    break
    print(n)
  • 举一反三