fork(2) download
  1. def func_scream1(msg):
  2. for elem in msg.split():
  3. print("_**%s**_" % elem, end='')
  4.  
  5. def func_scream2(msg):
  6. for elem in msg.split():
  7. alist = list(elem)
  8. for inloop in alist:
  9. print("*%s*" % inloop, end='')
  10. print(end=' ')
  11.  
  12. MSG="I made a mistake in the input file for the TensorFlow"
  13. func_scream1(MSG)
  14. print()
  15. func_scream2(MSG)
Success #stdin #stdout 0.01s 28384KB
stdin
Standard input is empty
stdout
_**I**__**made**__**a**__**mistake**__**in**__**the**__**input**__**file**__**for**__**the**__**TensorFlow**_
*I* *m**a**d**e* *a* *m**i**s**t**a**k**e* *i**n* *t**h**e* *i**n**p**u**t* *f**i**l**e* *f**o**r* *t**h**e* *T**e**n**s**o**r**F**l**o**w*