基本上我正在寻找将字符串和变量连接在一起。
在 Java 中:
String s = "HI my name is "+var_name+" I'm "+age+" years old";
在 PHP 中:
$s = "Hi my name is ".$var_name." I'm ".$age." years old";
我想在 Python 中做类似的事情。我知道 Python 3.0 及更高版本支持的格式函数,但我在 Python 2.6 版本上运行它有一个限制。我无法升级,所以请告诉我最好的方法。
PS - 我开始知道该格式也适用于 Python 2.6。如果您有任何其他方法,也请告诉我。知道更多总是好的。