Blank-小纸条-第10页
Blank的头像-小纸条
管理员
这家伙很懒,什么都没有写...
python - 异常捕获-小纸条

python – 异常捕获

直接上示例:大概的意思就是当try下方的代码出现异常的时候就自动执行except下方的代码 # 1.捕获所有异常 try: d = open("D:data.txt","r",encoding="UTF-8") e...
2年前
python - python - json-小纸条

python – python – json

直接看示例 import json # 1.列表嵌套字典转json data = [{"a": "1"}, {"b": "2"}, {"c": "3"}] json_str = json.dumps(data, en...
2年前
python - pyecharts基础使用-小纸条

python – pyecharts基础使用

官方文档: pyecharts一.折线图生成 from pyecharts.charts import Line # 对象创建 Line = Line() # x 坐标 Line.add_xaxis(["1","2","3"]) # y 坐标 Line.add_...
2年前
043 6
python  - 类-小纸条

python – 类

1.类就是一个有着属性和行为的对象 2.类和对象的关系 类就是程序中的'设计图纸',对象就是基于图纸所生产的实例 3.什么是面向对象编程 使用对象进行编程,设计一个类,基于类去创建一个对象,并使用...
2年前
051 9
python - 方法-小纸条

python – 方法

class Student: name = None gender = None age = None # 1.定义一个构造方法 __init__ # 创建的时候会自动运行,可传参 def __init__(self, name, gender, age): self.name = name self.gender ...
2年前
056 6