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