fork 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+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_w', 'h_h', 'a_a', 't_t', ' _ ', 't_t', 'h_h', 'e_e', ' _ ', 'f_f', 'u_u', 'c_c', 'k_k', '?_?']