Hi, all.<br><br>I want to improve speed of following simple function.<br>Any suggestion?<br><br>**********<br>def triple(inputlist):<br>  results = []<br>  for x in inputlist:<br>    results.extend([x,x,x])<br>  return results<br>
**********<br><br>Thank you in advance,<br><br>Hyunchul<br>