在 Clojure 中将比率格式化为百分比
Formatting a ratio as a percentage in Clojure
这看起来应该很明显,但是如何将 Clojure 的比率类型转换为百分比?
(format "%3s" (/ 1 2))
;; "1/2"
(format "%3f" (/ 1 2))
;; Throws an error
这看起来应该很明显,但是如何将 Clojure 的比率类型转换为百分比?
(format "%3s" (/ 1 2))
;; "1/2"
(format "%3f" (/ 1 2))
;; Throws an error