8 lines
83 B
Python
8 lines
83 B
Python
|
# test builtin object()
|
||
|
|
||
|
# creation
|
||
|
object()
|
||
|
|
||
|
# printing
|
||
|
print(repr(object())[:7])
|