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”(不包含双引号),则输出的结果不可能的是( )
微信扫码预览、分享更方便