fork download
  1. a ='pple btc python'
  2. b = a.split()
  3. c = b.sort()
  4. print(b)
  5. print(b)
Success #stdin #stdout 0.03s 9588KB
stdin
Standard input is empty
stdout
['btc', 'pple', 'python']
['btc', 'pple', 'python']