簡單介紹最新python 字串陣列互轉問題

roc_guo發表於2023-03-24
字串轉list陣列
str = '1,2,3'
arr = str.split(',')
gpu_ids分配
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陣列轉字串

字串型別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])
延伸閱讀:python中的字元數字之間的轉換函式

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 字串陣列互轉問題的文章就介紹到這了


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69901823/viewspace-2941556/,如需轉載,請註明出處,否則將追究法律責任。

相關文章