Python教程
Python是一种面向对象的解释型...
-
python文件操作-读写删除复制总结 1. read三种不同的方式 python;toolbar:false">f = open('hello.txt') #'hello.txt'指的是文件的名称 while True: text = f.readline() #读取文件指针指向的哪一行内容,然后指针下移 if text: print(t... 继续阅读python文件操作-读写删除复制总结
:2018-05-08
-
解决python3 json数据包含中文的读写问题 python3 默认的是UTF-8格式,但在在用dump写入的时候仍然要注意:如下 import jsondata1 = { "TestId": "testcase001", "Method": "post", "Title": "登录测试", "Desc": "登录基准测试", "Url": "http://xxx.xx... 继续阅读解决python3 json数据包含中文的读写问题
:2018-05-13
-
python操作mysql数据库的简单示例 下面的python代码通过MySQLdb模块链接mysql数据库,然后打开数据库,并通过sql语句查询mysql的版本号,最后关闭数据库连接 python">#!/usr/bin/python import MySQLdb # Open database connection db = MySQLdb.connect("localhost... 继续阅读python操作mysql数据库的简单示例
:2018-05-16
-
python 批量下载文件 python">#!/usr/bin/env python # -*- coding:utf-8 -*- from gevent import monkey monkey.patch_all() from gevent.pool import Pool import requests import sys import os def download(ur... 继续阅读python 批量下载文件
:2018-05-16
-
python 五子棋 python">from graphics import * from math import * def gobangwin(): win=GraphWin("this is a gobang game",400,400) #ÖÆ×÷21x21µÄÆåÅÌ win.setBackground("yellow") i1=0 whil... 继续阅读python 五子棋
:2018-05-16
-
Python的socket编程 目前处在学习python的阶段,昨天看到了python的socket模块,分别实现TCP、UDP时间戳回显。 1、tcp通信server和client代码 # tcpServer.py #!/usr/bin/python # -*- coding: utf-8 -*- from socket import * from time import ctime ... 继续阅读Python的socket编程
:2018-05-16
-
python 学习,使用类模拟购物车代码 python">class ShoppingCart(object): """Creates shopping cart objects for users of our fine website.""" items_in_cart = {} def __init__(self, customer_name): ... 继续阅读python 学习,使用类模拟购物车代码
:2018-05-16
-
python实现插入排序 python"> #coding: UTF-8 def arrage(temp_list): num = len(temp_list) for i in range(1,num): for j in range(i): if temp_l... 继续阅读python实现插入排序
:2018-05-16
-
python 九九乘法表 python"># 9*9 for i in list(range(1,10)): for j in list(range(1,10)): if i >= j: print(i * j, '', end=''); else: print("\n"); ... 继续阅读python 九九乘法表
:2018-05-16
-
python计算windows的cpu使用率 python">import os def get_cpu_load(): """ Returns a list CPU Loads""" result = [] cmd = "WMIC CPU GET LoadPercentage " response = os.popen(cmd + ' 2>&am... 继续阅读python计算windows的cpu使用率
:2018-05-16