fork download
  1. a=5
  2. b=3
  3. c=7
  4. tmp = [a,b,c]
  5. tmp.sort(reverse=True)
  6. for t in tmp:
  7. print(t)
Success #stdin #stdout 0.02s 9136KB
stdin
Standard input is empty
stdout
7
5
3