小陳Python學習筆記——小白筆記
阿新 • • 發佈:2020-12-27
技術標籤:筆記
一、.map()函式
語法:
map(function, iterable, ...)
引數:
function – 函式
iterable – 一個或多個序列
返回值:
Python 2.x 返回列表。
Python 3.x 返回迭代器。
例項:
>>>def square(x) : # 計算平方數
... return x ** 2
...
>>> map(square, [1,2,3,4,5]) # 計算列表各個元素的平方
[1, 4, 9, 16, 25]
>>> map( lambda x: x ** 2, [1, 2, 3, 4, 5]) # 使用 lambda 匿名函式
[1, 4, 9, 16, 25]
# 提供了兩個列表,對相同位置的列表資料進行相加
>>> map(lambda x, y: x + y, [1, 3, 5, 7, 9], [2, 4, 6, 8, 10])
[3, 7, 11, 15, 19]
二、for迴圈
語法:for iterating_var in sequence: /換行 statements(s)
例項:
#!/usr/bin/python
# -*- coding: UTF-8 -*-
for letter in 'Python': # 第一個例項
print '當前字母 :', letter
fruits = ['banana', 'apple', 'mango']
for fruit in fruits: # 第二個例項
print '當前水果 :', fruit
三、
—————會持續更新——————————————————————
參考:
https://www.runoob.com/