标签:python style col list pytho string int 随笔 今天
今天碰巧帮小伙伴写个小小的程序来完成八位字符串的固定位置互换,"123b5c7a"要换成"7ac5b321"
就想到了运用string转换成list然后再用list来进行位置的互换。
# -*- coding: utf-8 -*- L2=["12908ad0","16005a79","160055f6"] for i in L2: L1=list(i) L1[0],L1[1],L1[2],L1[3],L1[4],L1[5],L1[6],L1[7]=L1[6],L1[7],L1[4],L1[5],L1[2],L1[3],L1[0],L1[1] s1=‘‘.join(L1) print(sl)
python学习随笔-list与string的转换与list的位置互换
标签:python style col list pytho string int 随笔 今天
原文地址:https://www.cnblogs.com/hokisang/p/12074410.html