首先定义一个由(0~9)数字组成的字符串(不少于9个字符),编程求其中的最大值,并在屏幕上显示出来,显示格式为:The Max Num=
Python:
num = map(int,list(input())) print(f'The Max Num= {max(num)}')