分类: Python/Ruby
2016-08-02 21:42:44
0、循环
#########
for i in range(1,11)
#########
1、函数处理
#########
从其他模块引入需要使用的函数
from sys import ps1
########
查看某个模块定义的函数
import sys
dir(sys)
2、字符串处理
########
将数字转为字符串
str(1/7)和repr(1/7)
#########
格式化输出
str.rjust, str.ljust and str.center 分别表示右,左,中间对齐
str.zfill(5)输出5位字宽
str.format,
##########