// 将一个随机的 u32 的数字输出为十六进制的字符串let s = format!("{:x}{:x}", 1, rand::random::<u32>());// 科学计数法 10 的 10 次方let s = format!("{}", 1e10);