fork(1) download
  1. #!/bin/python
  2. normal_ass='normal behavior'
  3. crazy_ass='what the fuck?'
  4. print('_'.join(normal_ass))
  5. print(list(map((
  6. lambda x: '_'.join(x))
  7. ,crazy_ass)))
Success #stdin #stdout 0.02s 9984KB
stdin
Standard input is empty
stdout
n_o_r_m_a_l_ _b_e_h_a_v_i_o_r
['w', 'h', 'a', 't', ' ', 't', 'h', 'e', ' ', 'f', 'u', 'c', 'k', '?']