摘要:
来自 #_*_ coding=utf-8 *_* ## {{{ http://code.activestate.com/recipes/578130/ (r5) def pi(places=10): """Computes pi to given number of decimal places 参数places表示要返回的pi的小数点后位数 方法:先整体扩大10*... 阅读全文
摘要:
字符串格式化: 字符串格式化: %: %s 格式化为字符串 [html] view plain copy >>> format = "Hello, %s. %s enough for ya?" >>> values = ('world', 'Hot') >>> print format % values... 阅读全文