mirror of https://github.com/TwoWater/Python
10 lines
129 B
Python
10 lines
129 B
Python
![]() |
#!/usr/bin/env python3
|
||
|
# -*- coding: UTF-8 -*-
|
||
|
|
||
|
class User(object):
|
||
|
pass
|
||
|
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
print(dir(User()))
|