6 lines
52 B
Python
6 lines
52 B
Python
|
|
def typename(obj):
|
|
return type(obj).__name__
|
|
|
|
|
|
|
def typename(obj):
|
|
return type(obj).__name__
|
|
|
|
|