摘要:
写入文件 函数 fputs() 把字符串 s 写入到 fp 所指向的输出流中。如果写入成功,它会返回一个非负值,如果发生错误,则会返回 EOF。 也可以使用 fprintf(FILE *fp,const char *format, ...) 函数来写把一个字符串写入到文件中。 #include <s 阅读全文
摘要:
printf()和scanf() scanf(const char *format, ...) 函数从标准输入流 stdin 读取输入,并根据提供的 format 来浏览输入。 printf(const char *format, ...) 函数把输出写入到标准输出流 stdout ,并根据提供的格 阅读全文
摘要:
区分uWSGI和WSGI 在python web开发中,我们经常使用uwsgi配合nginx部署一个web框架,如Django或flask。同时我们又会说,框架和web服务器之间要符合WSGI协议。那就来厘清一下这几个概念。 web服务器和web框架 在讲uWSGI和WSGI之前,先要弄清楚web开 阅读全文
摘要:
Python包主要有.whl和.tar.gz两种格式 1.在线安装 pip install xxx 2. whl文件安装 利用cd命令切换到whl文件所在目录,然后运行pip install xxx.whl即可完成安装 3.tar.gz文件安装 解压后打开cmd,python setup.py in 阅读全文
摘要:
#pandas基本应用 import pandas as pd #两种数据结构,Series和DataFrame #Series df1=pd.Series([1,2,3,4,5],index=("a","b","c","d","e")) print(df1) # a 1 # b 2 # c 3 # 阅读全文
摘要:
from threading import Thread,Lockimport timea=10b=10lock=Lock()def fun(): # lock.acquire() global a global b a+=1 time.sleep(1) b+=1 # lock.release() 阅读全文
摘要:
#进程间通信,队列 from multiprocessing import Process,Queue import os,sys import time q=Queue() def get(data): time.sleep(2) print("thread {} get {}".format(o 阅读全文
摘要:
一.直接使用TestCase import unittest class Test1(unittest.TestCase): @classmethod def setUpClass(self): print("execute setUpClass") @classmethod def tearDow 阅读全文
摘要:
JSON (JavaScript Object Notation) 是一种轻量级的数据交换格式。它基于ECMAScript的一个子集。 Python3 中可以使用 json 模块来对 JSON 数据进行编解码,它包含了两个函数: json.dumps(): 对数据进行编码。字典->字符串 json. 阅读全文
摘要:
>>> s="{'name':'Tom'}" >>> type(s) <class 'str'> >>> json.loads(s) Traceback (most recent call last): File "<stdin>", line 1, in <module> File "C:\Pro 阅读全文