曹耘豪的博客

Keras 模型的保存与载入

Keras 分类与回归

Keras 损失函数

JVM入门

JPA之@GeneratedValue

Python入门

Python安装

2024-04-29

安装包下载: https://mirrors.huaweicloud.com/python

生成器

列表生成式

1
2
3
4
5
6
# [0, 1, 2, 3, 4]
list1 = [i for i in range(0, 5)]
# [0, 1, 4, 9, 16]
list2 = [i*i for i in range(0, 5)]
# [0, 1, 4]
list2 = [i*i for i in range(0, 5) if i < 3]

字典生成式

1
2
# {'a', 1}
dict 1 = {k, v for k, v in {'a': 1}.items()}

生成器

1
2
3
4
5
6
# <generator object <genexpr> at 0x103acb2b0>
gen1 = (i for i in range(0, 5))

# 需要注意,生成器只能遍历一遍
list(gen1) # [0, 1, 2, 3, 4]
list(gen1) # []

定制Python的类

2018-04-08

假设类++实例++为my_class,即my_class = MyClass()

def __iter__(self)

itor()调用,返回类的迭代器版本用于迭代, 通常使用于for语句等

>>继续阅读

关于控制反转(依赖注入)的思考

在 Python 中使用 MySQL

简单工厂模式

模式分析

>>继续阅读