码迷,mamicode.com
首页 > 编程语言 > 详细

python学习随笔-list与string的转换与list的位置互换

时间:2019-12-20 21:08:28      阅读:111      评论:0      收藏:0      [点我收藏+]

标签: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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!