views:

99

answers:

2

Java's equivalence to Python's "Got value: %s" % variable?

+6  A: 
String.format("Got value: %s", variable);
Michael Mrozek
+3  A: 
System.out.format("%s", aString)

See Format and all its various incarnations.

Chuk Lee
Your URL is faulty: http://file///opt/java/javase/jdk1.6/docs/api/java/text/Format.html
Viet
Oops! http://java.sun.com/javase/6/docs/api/java/text/Format.html
Chuk Lee