有人有一個很好的提示如何將PHP函數移植到python?python相當於sprintf
/**
* converts id (media id) to the corresponding folder in the data-storage
* eg: default mp3 file with id 120105 is stored in
* /(storage root)/12/105/default.mp3
* if absolute paths are needed give path for $base
*/
public static function id_to_location($id, $base = FALSE)
{
$idl = sprintf("%012s",$id);
return $base . (int)substr ($idl,0,4) . '/'. (int)substr($idl,4,4) . '/' . (int)substr ($idl,8,4);
}