
Python
野生程序猿_天空蓝色
半路出家做软件,野生程序猿!
展开
-
Python FTP
# -*- coding: utf-8 -* import ftplib import os import sys import time import socket def get_filename(line): pos = line.rfind(':') while line[pos] != ' ': pos += 1 while line[pos]...转载 2017-11-07 10:07:20 · 356 阅读 · 1 评论 -
Python 中文转Unicode字符串
Python 3.6代码:# -*- coding: utf-8 -* def to_unicode(string): ret = '' for v in string: ret = ret + hex(ord(v)).upper().replace('0X', '\\u') return ret print(to_unicode("中国"))输...原创 2017-11-10 16:39:50 · 8521 阅读 · 0 评论 -
Python环境搭建之OpenCV
https://www.cnblogs.com/lclblack/p/6377710.html一、openCV介绍 Open Source Computer Vision Library.OpenCV于1999年由Intel建立,如今由Willow Garage提供支持。OpenCV是一个基于BSD许可(开源)发行的跨平台计算机视觉库,可以运行在Linux、Windows、MacOS操作系统上。...转载 2017-11-28 16:26:50 · 255 阅读 · 0 评论 -
Python3 PyQt5 pycharm 环境搭建
http://www.jianshu.com/p/094928ac0b73转载 2017-11-14 20:44:02 · 231 阅读 · 0 评论