当前位置: 高中信息技术 / 单选题
  • 1. (2022高二上·金华月考) 有下列Python程序段:

    import random

    s=input("请输入字符串:")

    x=random.randint(3,6)

    n=len(s)

    if len(s[0:x])<len(s[x:n]):

        r=s[x:n]+s[0:x]

    else:

        r=s[0:x]+s[x:n]

    print(r)

    执行该程序段,若输入“helloworld”(不包含双引号),则输出的结果不可能的是(    )

    A . loworldhel B . oworldhell C . helloworld D . worldhello

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