您好,登錄后才能下訂單哦!
這篇文章主要介紹了python字符串數組互轉問題如何解決的相關知識,內容詳細易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇python字符串數組互轉問題如何解決文章都會有所收獲,下面我們一起來看看吧。
str = '1,2,3' arr = str.split(',')
name = opt.name gpu_ids =[ int(item) for item in opt.gpu_ids.split(',')] # set gpu ids if len(gpu_ids) > 0: torch.cuda.set_device(gpu_ids[0])
字符串類型list:
arr = ['a','b'] str = ','.join(arr)
數字型list:
arr = [1,2,3] str = ','.join(str(i) for i in b)
二維list數組轉string:
先轉numpy數組,再遍歷轉str:
import os import numpy as np centroids= [[1,2],[3,4]] centroids=np.asarray(centroids) anchors = centroids.copy() widths = anchors[:, 0] sorted_indices = np.argsort(widths) out_string="" for i in sorted_indices: out_string += str(int(anchors[i, 0] * 416)) + ',' + str(int(anchors[i, 1] * 416)) + ', ' print("str", out_string[:-2])
int(x [,base ]) 將x轉換為一個整數
long(x [,base ]) 將x轉換為一個長整數
float(x ) 將x轉換到一個浮點數
complex(real [,imag ]) 創建一個復數
str(x ) 將對象 x 轉換為字符串
repr(x ) 將對象 x 轉換為表達式字符串
eval(str ) 用來計算在字符串中的有效Python表達式,并返回一個對象
tuple(s ) 將序列 s 轉換為一個元組
list(s ) 將序列 s 轉換為一個列表
chr(x ) 將一個整數轉換為一個字符
unichr(x ) 將一個整數轉換為Unicode字符
ord(x ) 將一個字符轉換為它的整數值
hex(x ) 將一個整數轉換為一個十六進制字符串
oct(x ) 將一個整數轉換為一個八進制字符串
chr(65)='A'
ord('A')=65
int('2')=2;
str(2)='2'
關于“python字符串數組互轉問題如何解決”這篇文章的內容就介紹到這里,感謝各位的閱讀!相信大家對“python字符串數組互轉問題如何解決”知識都有一定的了解,大家如果還想學習更多知識,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。