Python教程

Python教程:包含了所有代写案例以及部分答案

  • # -*- coding:utf-8 -*- class BinDecimal: def printBin(self, num): aa = num*2 rest = [] rest.append(str(int(aa))) while aa != 1: aa = (aa – int(aa))*2 rest.append(str(int(aa))) res = ‘0.’ + "".join(rest) if len(res)>= 32: return "Err … 继续阅读“python 二进制小数”

    :
  • # -*- coding: utf-8 -*- import sys reload(sys) import datetime import time sys.setdefaultencoding("utf-8") from ghost import Ghost ghost = Ghost(wait_timeout=20) url="http://weixin.sogou.com/gzh?openid=oIWsFt8JDv7xubXz5E3U41T0eFbk&quot … 继续阅读“python 微信爬虫”

    :