capitalize 是字串的方法,而 c[0:2] 是一個list,所以你調用 captitalize 的時候會出錯. c = ['zz','yy','xx'] c = [string.capitalize() for string in c].
確定! 回上一頁