fork download
  1. word = ['A', 'P', 'P', 'L','E']
  2. text =''
  3. for w in word:
  4. text += w
  5.  
  6. print(text)
  7.  
  8.  
Success #stdin #stdout 0.03s 9680KB
stdin
8
stdout
APPLE