Chen Jian

导航

 

2016年7月15日

摘要: 来自 #_*_ 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*... 阅读全文
posted @ 2016-07-15 09:20 Chen Jian 阅读(2809) 评论(0) 推荐(1) 编辑
 
摘要: 字符串格式化: 字符串格式化: %: %s 格式化为字符串 [html] view plain copy >>> format = "Hello, %s. %s enough for ya?" >>> values = ('world', 'Hot') >>> print format % values... 阅读全文
posted @ 2016-07-15 09:06 Chen Jian 阅读(467) 评论(0) 推荐(0) 编辑