L1-023 输出GPLT python
python 实现
s=str(input()) lst=[0,0,0,0] for item in s: if item=="G" or item=="g": lst[0]+=1 elif item=="P" or item=="p": lst[1]+=1 elif item=="L" or item=="l": lst[2]+=1 elif item=="T" or item=="t": lst[3]+=1 while max(lst)!=0: if lst[0]!=0: print("G",end="") lst[0]-=1 if lst[1]!=0: print("P",end="") lst[1]-=1 if lst[2]!=0: print("L",end="") lst[2]-=1 if lst[3]!=0: print("T",end="") lst[3]-=1