Python 官方文档:入门教程 => 点击学习
这篇文章主要介绍了python字符串数组互转问题如何解决的相关知识,内容详细易懂,操作简单快捷,具有一定借鉴价值,相信大家阅读完这篇Python字符串数组互转问题如何解决文章都会有所收获,下面我们一起来看看吧。字符串转list数组str&n
这篇文章主要介绍了python字符串数组互转问题如何解决的相关知识,内容详细易懂,操作简单快捷,具有一定借鉴价值,相信大家阅读完这篇Python字符串数组互转问题如何解决文章都会有所收获,下面我们一起来看看吧。
str = '1,2,3'arr = str.split(',')
name = opt.namegpu_ids =[ int(item) for item in opt.gpu_ids.split(',')]# set gpu idsif 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 osimport 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字符串数组互转问题如何解决”知识都有一定的了解,大家如果还想学习更多知识,欢迎关注编程网Python频道。
--结束END--
本文标题: python字符串数组互转问题如何解决
本文链接: https://lsjlt.com/news/349869.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-03-01
2024-03-01
2024-03-01
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0