fork(1) download
  1. # your code goes here
  2. x = [1, 2, 3, 4, 5]
  3. a ='_'.join(str(i) for i in x)
  4. print(a)
Success #stdin #stdout 0.01s 9992KB
stdin
Standard input is empty
stdout
1_2_3_4_5