python中常用的函数有以下几种
print()函数:打印字符串。
raw_input()函数:从用户键盘捕获字符。
len()函数:计算字符长度。
format函数:格式化输出。
type()函数:查询对象的类型。
int()函数、float()函数、str()函数等:类型转化函数。
id()函数:获取对象的内存地址。
help()函数:Python的帮助函数。
s.islower()函数:判断字符小写。
s.sppace()函数:判断是否为空格。
str.replace()函数:替换字符。
import()函数:引进库。
open().write()函数:写入文件。
strip()、lstrip()、rstrip()函数:去除空格。
list()函数:将字符串转换成列表。