Since Python is dynamically typed, we can create mixed lists also: L3 = [ True, 3, "6", 9.0 ] [ type(ele) for ele in L3 ] > [ bool, int, ...
確定! 回上一頁