共计 1341 个字符,预计需要花费 4 分钟才能阅读完成。
导读 | 这篇文章主要介绍了最新 python 字符串数组互转问题, 主要介绍了字符串转 list 数组问题和 list 数组转字符串问题,本文结合示例代码给大家介绍的非常详细,需要的朋友可以参考下 |
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 字符串数组互转问题的文章就介绍到这了