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

    s1="abcdefgh"; s2="0213"; res=""

    j=0; m=0

    for i in range(len(s1)):

       k=m+int(s2[j])

       res+=s1[k]

       j+=1

      if  j==4:

    m=4

         j=0

    该程序段运行后,res的值为(    )

    A . "acbdacbd" B . "acbdegfh" C . "acbdefgh" D . "abcdefgh"

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