From 2f23e77508afa24fc9f3cb5ada49992a34c89262 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mert=20G=C3=B6r?= Date: Sun, 25 Jun 2023 16:50:36 +0300 Subject: [PATCH] class type --- python-temel/class.1.py | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 python-temel/class.1.py diff --git a/python-temel/class.1.py b/python-temel/class.1.py new file mode 100644 index 0000000..46ed9dc --- /dev/null +++ b/python-temel/class.1.py @@ -0,0 +1,5 @@ +class Sample: + def foo(self): + print('foo') + +print(type(Sample))