python笔记

Posted 潘美丽的博客

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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笔记的主要内容,如果未能解决你的问题,请参考以下文章

Python 3学习笔记

Python Tornado初学笔记之表单与模板

常用python日期日志获取内容循环的代码片段

python 有用的Python代码片段

Python 向 Postman 请求代码片段

python [代码片段]一些有趣的代码#sort