Ad
Code
Diff
  • def get_list(may):
        return ' '.join(may)
    • def get_list(may):
    • out=''
    • for i in may:
    • out+=i+' '
    • return out[:-1]
    • return ' '.join(may)