目录遍历的三种方法
1、目录的遍历:递归函数def visitDir(path): li = os.listdir(path) for p in li: pathname = os.path.join(path,p) if not os.path.isfile(pathname): visitDir(pathname) …… 阅读全文
1、目录的遍历:递归函数def visitDir(path): li = os.listdir(path) for p in li: pathname = os.path.join(path,p) if not os.path.isfile(pathname): visitDir(pathname) …… 阅读全文
冒泡排序def bubbleSort(numbers): i = 0 while i < len(numbers)-1: for j in range(i+1,len(numbers)): if numbers[i] > numbers[j]: numbers[i],numbers[j] = numbers …… 阅读全文
Python数据分析实战——答疑:如何在Python2.7版本中安装pip程序呢?转载▼原文连接:http://www.tbk.ren/article/2.htmlpip 是一个安装和管理 Python 包的工具,python安装包的工具有easy_install, setuptools, pip,distribute。使用这些工具都能下载并安装djan …… 阅读全文
使用PyMySQL操作mysql数据库适用环境python版本 >=2.6或3.3mysql版本>=4.1安装可以使用pip安装也可以手动下载安装。使用pip安装,在命令行执行如下命令:1pipinstallPyMySQL手动安装,请先下载。 …… 阅读全文
Python数据工具箱:数据库连接库数据库连接可用于连接众多数据库以及访问通用数据库接口,可用于数据库维护、管理和增、删、改、查等日常操作。库/函数描述推荐度mysql-connector-python[第三方库]MySQL官方驱动连接程序★★★MySQL-python[第三方库 …… 阅读全文
'''Created on 2017年8月30日@author: Nick'''#_*_coding:utf-8_*_import tkinter as tkfrom tkinter import *#定义Button回调函数def helloButton(): print('hello world!') def cb1(): print(' …… 阅读全文
'''Created on 2017年8月31日@author: Nick'''#_*_coding:utf-8_*_import tkinter as tkfrom tkinter import *from openpyxl.worksheet.properties import Outlinefrom _tkinter import create'''Tkinter教 …… 阅读全文
'''Created on 2017年9月1日@author: Nick'''#_*_coding:utf-8_*_import tkinter as tkfrom tkinter import *'''Tkinter之Event篇'''#1、测试鼠标点击(Click)事件# 分别测试鼠标的事件,回调函数的参数event中(x,y)表示当前点击的坐标值def printE …… 阅读全文