fork download
  1. def go():
  2. a="belcome";
  3. b="Vin";
  4. x=a.capitalize();
  5. y=b.center(8,'k');
  6. print(x);
  7. print(y);
  8. go();
Success #stdin #stdout 0.01s 9992KB
stdin
Standard input is empty
stdout
Belcome
kkVinkkk