1
Septembers 2016-09-20 12:00:05 +08:00
see https://docs.python.org/3/library/modules.html
(不认真看文档的打死好么? |
2
Geoion 2016-09-20 12:16:14 +08:00
self.__class__.__name__
|
3
csdreamdong 2016-09-20 12:42:12 +08:00
globals()
? |
4
Septembers 2016-09-20 17:08:12 +08:00
|
5
hnsxyhh OP 是 python2.7 哦
|
6
Contextualist 2016-09-20 20:06:25 +08:00 via iPad
3 楼正解, globals() 返回所有全局变量的 dict ,然后只需要逐个用 type() 筛出是 class 的变量就行了。
|
7
sheep3 2016-09-20 20:23:08 +08:00
cat `find ./ -iname '*.py'` | egrep 'class\s+[a-zA-Z]+\('
|
8
hitmanx 2016-09-20 20:41:59 +08:00 1
|
9
errorlife 2016-09-21 09:07:55 +08:00
头像围观者:)
|
10
xrlin 2016-09-21 13:24:04 +08:00
围观头像
|
11
hnsxyhh OP 谢谢大家,楼上几位的方法都试了, 8 楼的方案解决了
|