1. 程式人生 > >Python中常用的內值方法

Python中常用的內值方法

style pri 最大值 div for 常用 值方法 str hello

1)min(2,4) ## 求最小值
2)max(2,4) ## 求最大值
3)sum(range(1,100,2)) ## 求和
4)枚舉:返回索引值和對應的value值
for i, v in enumerate(‘hello world‘):
print str(i) + v # 把索引值和對應的value連接起來
print str(i) + "---->" + v
5)zip八兩個字符串每個對應的值連接起來,組成元組

a = ‘abc‘
b = ‘123‘
for i in zip(a, b):
print i, type(i)


print "_".join(i)


Python中常用的內值方法