当前位置: 高中信息技术 / 单选题
  • 1. (2022·温州模拟) 有如下程序段:

    from random import randint

    s ="python"

    k = randint(1, 4)

    for i in range(k):

        j=i+1

        while j < len(s) and s[j] > s[i]:

            j+=1

        if j < len(s):

            s=s[:j]+s[j+1:]

        else:

            s = s[:1en(s) - 1]

    print(s)

    执行该程序段后,s的值不可能是(    )

    A . "py” B . "pyo" C . ”pytn" D . "pyton"

微信扫码预览、分享更方便