fork(4) download
  1. nome, idade = ("Wallace", 26)
  2.  
  3. print "Nome:" + nome
  4.  
  5. print "Idade: " + str(idade)
Success #stdin #stdout 0.01s 9016KB
stdin
Standard input is empty
stdout
Nome:Wallace
Idade: 26