在python中,有時需要將list以字串的形式輸出,此時可以使用如下的形式:
",".join(list_sample)
1其中,,表示的是分隔符
如需要將a_list = ["h","e","l","l","o"]轉換成字元輸出,可以使用如下的形式轉換:
a_list = ["h","e","l","l","o"]
print ",".join(a_list)
如果list中不是字串,而是數字,則不能使用如上的方法,會有如下的錯誤:
typeerror: sequence item 0: expected string, int found
可以有以下的兩種方法:
1、num_list = [0,1,2,3,4,5,6,7,8,9]
num_list_new = [str(x) for x in num_list]
print ",".join(num_list_new)
2、num_list = [0,1,2,3,4,5,6,7,8,9]
num_list_new = map(lambda x:str(x), num_list)
如何將DataTable轉換成List
using system using system.collections.generic using system.linq using system.text using system.data using system.collections using system.reflection n...
將Datatable轉換成實體List集合的方法
今天要做execel檔案匯入專案裡,要用到這個東西,所以就修修改改的寫了乙個方法,這個方法裡實體用泛型表示。但是感覺這樣寫好像太複雜了,目前沒有想到更好的可以提高效率的解決方案,如果有前輩看到了,幫我提點建議哦。將datatable轉換為實體集合 by jelena 2013 05 13 publi...
C 將DataTable轉換成list的方法
當前頁 總頁數 public static listgethotelcommentlist int userid,int pageindex,out intpagecount userid datatable dt sqlhelper.get datatable sql,sqlhelper.getc...