Python 笔记

当我们经常在不同的开发语言中切换时,常常是有一段时间不写的话,就忘了或搞混了。所以最好的方法就是写笔记。

判断变量类型

type('a') is str # true
type({}) is dict # true
type([]) is list # true

Json

import json
data = json.loads(string)	# 字符串转换为对象
file = open(file, 'r')
data = json.load(file) # 从文件读取内容,并转换为对象

string = json.dumps(data) # 将对象转换为字符串
string = json.dumps(data, ensure_ascii=False, indent='\t') # 转换为字符串,并保留中文,添加缩进
json.dump(data, file) # 直接将转换的字符串保存到文件

跨平台GUI库 Tkinter

安装库

pip install urllib 安装
pip install --upgrade SomePackage 升级
pip uninstall lib 卸载
pip show 显示安装包信息
python3 -m pip install XXX 同时安装了 python2 和 python3 时,指定版本安装
pip3 install --upgrade pip 
Python
2020-4-28
  • {{comment.name}}{{comment.time | fDateTime}}

    • {{reply.name}}{{reply.time | fDateTime}}

Recent Articles

Recent Comments