史塔克的原理
stack of theory
網頁
Networking
Linux
Arduino
程式概念
AI人工智慧
PHP & Python
其他程式
資料庫
IT
咖啡與食物
攝影
車輛
生活
首頁
2018年11月27日 星期二
sprintf
<?php
$number = 2;
$name = "Jack";
$txt =
sprintf( " %s has %d cars.", $name,$number );
echo $txt;
?>
python3 Sprintf
number = 2
name = 'Jack'
print( "{0} has {1} cars".format(name, number) )
输出:
Jack has 2 cars
較新的文章
較舊的文章
首頁