收起
>>> s = 'abcde C++ fghijkl Pascal Fotran' >>> print(' '.join(sorted(s.split()))) C++ Fotran Pascal abcde fghijkl
报告相同问题?