当前位置: 高中信息技术 / 单选题
  • 1. (2023高二上·杭州期中) 有如下Python程序段:

    import random

    s1="PROGRESS";s2=""

    f=[False]*8

    for i in range(1,5):

        t=random.randint(0,3)*2+1

        while f[t]:

            t=random.randint(0,3)*2+1

        f[t]=True

        s2=s2+s1[t]

    print(s2)

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

    A . EGRS B . GERS C . SEOR D . RESG

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