Python教程
Python是一种面向对象的解释型...
-
python通过pysftp加密上传、下载ftp服务器文件 python通过pysftp加密上传、下载ftp服务器文件 python">import pysftp import sys # Defines the name of the file for download / upload remote_file = sys.argv[1] srv = pysftp.Connect... 继续阅读python通过pysftp加密上传、下载ftp服务器文件
:2018-05-17
-
Python动态生成中文验证码 Python动态生成中文验证码“`python –– coding: utf-8 –– import Image,ImageDraw,ImageFont import random import math, string class RandomChar(): “””用于随机生成汉字””” @staticmethod def Unicode(): val = ... 继续阅读Python动态生成中文验证码
:2018-05-17
-
python linux下python抓屏小程序 python">#!/usr/bin/python ''' ''' import gtk.gdk import gtk import glib class MyRect(): def __init__(self, x = 0, y = 0, w = 0, h = 0): self.x = x ... 继续阅读python linux下python抓屏小程序
:2018-05-17
-
python 解决把两个数字的和、积分别告诉两个人猜两个数字组合的问题 python"># -*- coding: utf-8 -*- # 原题:一个老师从2到9中取两个数字,给甲说了和,给乙说了积, # 甲说我不知道,乙说我也不知道,甲说你不知道那我就知道了, # 乙说你知道了那我也知道了 # 这两个数分别是多少? # ===============================... 继续阅读python 解决把两个数字的和、积分别告诉两个人猜两个数字组合的问题
:2018-05-17
-
python根据出生日期计算年龄的代码 python根据出生日期计算年龄的代码,运行后会提醒用户输出出生的年月日,然后输出年龄,可以改写为一个通用函数 python">from time import * #a function to find your age def age(): print "Enter Your Date of Birth" d=input("D... 继续阅读python根据出生日期计算年龄的代码
:2018-05-17
-
python print amp;quot;hello pythonamp;quot; python">print "hello python" 标签:python ... 继续阅读python print amp;quot;hello pythonamp;quot;
:2018-05-17
-
Python 判断一个进程是否存在 Pythonjiaocheng/20171102/376.html">python">#-*- coding:utf-8 -*- import win32com.client def check_exsit(process_name): WMI = win32com.client.GetObject('winmgmts:') ... 继续阅读Python 判断一个进程是否存在
:2018-05-17
-
python 异常处理 python">def main(): try: for line in readfile('lines.txt'): print(line.strip()) except IOError as e: print('could not open the file:',e) except ValueError... 继续阅读python 异常处理
:2018-05-17
-
python删除源文件中的注释并编译 上线需要,将py的源码中注释删掉,然后编译成字节码。写此脚本主要是为了删除注释。当然如果上线不想放py源码,则在最后增加删除源码即可。 python">None 标签:python ... 继续阅读python删除源文件中的注释并编译
:2018-05-17
-
python性能测试脚本 python">import httplib import urllib import time import json class Transaction(object): def __init__(self): self.custom_timers = {} def run(self): conn = h... 继续阅读python性能测试脚本
:2018-05-18