格式如下:
输入:3,5,7,1,8,9
输出:1
收起
import re a = [int(n) for n in re.split('[^\d]+',input('type some number:'))] print(min(a))
报告相同问题?