组卷题库 > 高中信息技术试卷库
试题详情
 有如下 Python程序,实现求字符串中的最长连续上升子串的长度。例如:字符串“hellopython”中的最长连续上升子串是“lopy”,长度为 4。

s=input()

n=len(s);c=1;max=1

for i in range(1,n):

 if (1)____:

 c=c+1

 if c>max:

 max=c

 else:

知识点
参考答案
采纳过本试题的试卷
    教育网站链接