1. 刪除字符串列表中的數字字符串 (deletes a numeric string from the string list)python
參考連接: https://stackoverflow.com/questions/16908186/python-check-if-list-items-are-integersgit
1 In [20]: a=['治理', '經費', '20', '模式', '科研', '91', '管理', '政府'] 2
3 In [21]: b=[s for s in a if not s.isdigit()] 4
5 In [22]: b 6 Out[22]: ['治理', '經費', '模式', '科研', '管理', '政府']
2. spa