Python/Code/Python9Code/com/twowater/mtest0.py

10 lines
148 B
Python

#!/usr/bin/env python3
# -*- coding: UTF-8 -*-
class Test:
def prt(self):
print(self)
print(self.__class__)
t = Test()
t.prt()