fork(1) 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. for code in elem:
  8. print("*%s*" % code, end='')
  9. print(end=' ')
  10.  
  11. MSG="I made a mistake in the input file for the TensorFlow"
  12. func_scream1(MSG)
  13. print()
  14. func_scream2(MSG)
Success #stdin #stdout 0.02s 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*