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

python笔记

时间:2017-11-16 19:45:54      阅读:150      评论:0      收藏:0      [点我收藏+]

标签:path   tran   pre   esc   cap   print   test   去掉   python笔记   

1.使用python去掉unicode前面的u。如    u‘../123/haha/test.png‘   变成../123/haha/test.png,代码如下:(python2.7)

path=u‘../../../test.png‘.encode(‘raw_unicode_escape‘)
print path

  运行结果:

>>>../../../test.png

2.使用python将图片变成数组后base64加密,代码如下:

def transformImage(imagepath):
    path=imagepath.encode(‘raw_unicode_escape‘)
    f = open(path,‘rb‘).read()
    res = bytearray(f)
    bs64 = base64.b64encode(res)
    # print bs64
    return bs64
print transformImage(u‘../123/haha/test.png‘)

  

python笔记

标签:path   tran   pre   esc   cap   print   test   去掉   python笔记   

原文地址:http://www.cnblogs.com/panpan0301/p/7845697.html

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