練習:如果list中既包含字串,又包含整數,由於非字串型別沒有lower()
方法,所以列表生成式會報錯:
demo測試:
>>> [s.lower() for s in l]
traceback (most recent call last):
file "", line 1, in file "", line 1, in attributeerror: 'int' object has no attribute 'lower'
使用內建的isinstance
函式可以判斷乙個變數是不是字串:
>>> x = 'abc'
>>> y = 123
>>> isinstance(x, str)
true
>>> isinstance(y, str)
false
請修改列表生成式,通過新增if
語句保證列表生成式能正確地執行:
# -*- coding: utf-8 -*-
l2 = [x.lower() for x in l1 if isinstance(x,str)]
測試:
print(l2)
print('測試通過!')
else:
print('測試失敗!')
Python 列表生成式
列表生成式即list comprehensions,是python內建的非常簡單卻強大的可以用來建立list的生成式。舉個例子,要生成list 1,2,3,4,5,6,7,8,9,10 可以用list range 1,11 list range 1,11 1,2,3,4,5,6,7,8,9,10 但...
python列表生成式
全都是重點!列表生成式即listcomprehensions,是python內建的非常簡單卻強大的可以用來建立list的生成式。舉個例子,要生成list 1,2,3,4,5,6,7,8,9,10 可以用range 1,11 range 1,11 1,2,3,4,5,6,7,8,9,10 但如果要生成...
python列表生成式
全都是重點!列表生成式即listcomprehensions,是python內建的非常簡單卻強大的可以用來建立list的生成式。舉個例子,要生成list 1,2,3,4,5,6,7,8,9,10 可以用range 1,11 range 1,11 1,2,3,4,5,6,7,8,9,10 但如果要生成...