随笔分类 -  python

上一页 1 2 3 4 5 6 7 8 9 ··· 48 下一页
摘要:安装 pip3 install gevent Gevent 是一个第三方库,可以轻松通过gevent实现并发同步或异步编程,在gevent中用到的主要模式是Greenlet, 它是以C扩展模块形式接入Python的轻量级协程。 Greenlet全部运行在主程序操作系统进程的内部,但它们被协作式地调度 阅读全文
posted @ 2020-12-26 12:45 anobscureretreat 阅读(531) 评论(0) 推荐(1) 编辑
摘要:code import copy age = 19 print(f'first:{id(age)}') age = 20 print(f'second:{id(age)}') l1 = ['a', 'b', 'c', ['d', 'e', 'f']] l2 = l1 print("*"*25,"赋值 阅读全文
posted @ 2020-12-26 12:40 anobscureretreat 阅读(77) 评论(0) 推荐(0) 编辑
摘要:安装 pip3 install pyinstaller 更改exe文件的图标 pyinstaller -F --icon=1234.ico run.py 打包成exe文件夹 pyinstaller run.py 打包成一个exe文件 pyinstaller -F run.py 阅读全文
posted @ 2020-12-26 12:38 anobscureretreat 阅读(70) 评论(0) 推荐(0) 编辑
摘要:上一篇记录了关于文件夹下文件的遍历的程序实现,今天学习一下关于文件的复制、重命名、移动和删除的操作; 对于文件的操作,主要依赖OS模块和shutil模块; 下面直接以例子来说明关于文件的复制、重命名、移动和删除的操作:一、复制 1、文件的复制 import os import shutil shut 阅读全文
posted @ 2020-12-26 12:35 anobscureretreat 阅读(351) 评论(0) 推荐(0) 编辑
摘要:urllib.request 返回的数据需要解码,如 网站返回的是GBK编码数据. 需要调用decode("gbk") 此时输出不会乱码. with urllib.request.urlopen(url, context=context) as response: html = response.r 阅读全文
posted @ 2020-12-26 12:28 anobscureretreat 阅读(440) 评论(0) 推荐(0) 编辑
摘要:code from threading import Thread from multiprocessing import Process import os def work(name): print('{} say hello'.format(name)) if __name__ == '__m 阅读全文
posted @ 2020-12-26 12:04 anobscureretreat 阅读(74) 评论(0) 推荐(0) 编辑
摘要:基本操作:登陆:mysql -uroot -h127.0.0.1 -P3306 -pmysql -uroot -p(本机不用写host)退出mysql:ctrl+z+回车,或者exit端口号默认是3306,但是可以通过安装目录下的配置文件修改。 #安装pymysql pip3 install pym 阅读全文
posted @ 2020-12-24 22:53 anobscureretreat 阅读(265) 评论(0) 推荐(0) 编辑
摘要:code import os print(__file__) print(os.path.dirname(__file__)) print(os.path.abspath(__file__)) 阅读全文
posted @ 2020-12-24 17:46 anobscureretreat 阅读(150) 评论(0) 推荐(0) 编辑
摘要:首先安装pyenv macname@MacdeMacBook-Pro Desktop % mkdir fish macname@MacdeMacBook-Pro Desktop % cd fish macname@MacdeMacBook-Pro fish % pip3 install pipenv 阅读全文
posted @ 2020-12-24 00:06 anobscureretreat 阅读(373) 评论(0) 推荐(0) 编辑
摘要:code import multiprocessing import time def foo(): print ('Starting function') time.sleep(0.1) print ('Finished function') if __name__ == '__main__': 阅读全文
posted @ 2020-12-23 22:44 anobscureretreat 阅读(157) 评论(0) 推荐(0) 编辑
摘要:server import socket import datetime s=socket.socket(socket.AF_INET,socket.SOCK_STREAM) s.bind(('127.0.0.1',9999)) s.listen(1) starttime = None endtim 阅读全文
posted @ 2020-12-23 22:41 anobscureretreat 阅读(1173) 评论(0) 推荐(0) 编辑
摘要:code import threading import time exitFlag = 0 class myThread (threading.Thread): def __init__(self, threadID, name, counter): threading.Thread.__init 阅读全文
posted @ 2020-12-23 22:38 anobscureretreat 阅读(79) 评论(0) 推荐(0) 编辑
摘要:code.py import os import sys import time program = "python3" print("Process calling") arguments = ["xxxxxx.py"] os.execvp(program, (program,) + tuple( 阅读全文
posted @ 2020-12-23 22:37 anobscureretreat 阅读(156) 评论(0) 推荐(0) 编辑
摘要:code import multiprocessing import time def foo(): print ('Starting function') time.sleep(0.1) print ('Finished function') if __name__ == '__main__': 阅读全文
posted @ 2020-12-23 22:32 anobscureretreat 阅读(171) 评论(0) 推荐(0) 编辑
摘要:windows和linux路径斜杠不兼容问题 windows >>> import os >>> os.getcwd() 'C:\\Program Files (x86)\\python27' >>> os.path.join(os.getcwd(),"hello") 'C:\\Program Fi 阅读全文
posted @ 2020-12-23 22:30 anobscureretreat 阅读(567) 评论(0) 推荐(0) 编辑
摘要:code >>> >>> import datetime >>> i = datetime.datetime.now() >>> t="{}{}{}{}{}{}-{}".format(i.year,i.month,i.day,i.hour,i.minute,i.second,i.microsecon 阅读全文
posted @ 2020-12-23 22:28 anobscureretreat 阅读(1367) 评论(0) 推荐(0) 编辑
摘要:code f = open('a.txt', 'r') n = open('b.txt','w+') n.writelines(f.readlines()) n.close() f.close() code f = open("a.txt", 'w') f.write("写入一行新数据") f.fl 阅读全文
posted @ 2020-12-23 22:22 anobscureretreat 阅读(370) 评论(0) 推荐(0) 编辑
摘要:code # 文件上传 import flask, os, sys,time from flask import request interface_path = os.path.dirname(__file__) sys.path.insert(0, interface_path) #将当前文件的 阅读全文
posted @ 2020-12-23 22:20 anobscureretreat 阅读(1025) 评论(0) 推荐(0) 编辑
摘要:code >>> import sys >>> sys.version_info sys.version_info(major=3, minor=7, micro=4, releaselevel='final', serial=0) >>> 阅读全文
posted @ 2020-12-23 22:18 anobscureretreat 阅读(326) 评论(0) 推荐(0) 编辑
摘要:code pip3 install mitmproxy 阅读全文
posted @ 2020-12-23 22:16 anobscureretreat 阅读(81) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 7 8 9 ··· 48 下一页