fork download
  1. character_name = "Johnny"
  2. character_age = "64"
  3. print(character_name + " is cool.")
  4. print("And he is " + character_age + " years old.")
  5.  
  6. #https://pt.stackoverflow.com/q/406643/101
Success #stdin #stdout 0.02s 9180KB
stdin
Standard input is empty
stdout
Johnny is cool.
And he is 64 years old.