使用递归进行循环取数,但是好像内存消耗很大,求大佬指点什么条件下用递归比较好 in_str = input() def listcut(in_str): if len(in_str) ==8: return (in_str) elif len(in_str)<8: &...