有如下Python程序,执行该程序后,输出的结果是?( )
def zdz(s):m = s[0]for i in s[1: ]if i> m:m = ireturn mprint(zdz('abc789XYZ'))
c
9
Z
None