python-CSD-kursu/python-temel/class.sample.other.2.py

7 lines
133 B
Python
Raw Normal View History

2023-06-25 16:04:47 +03:00
class Sample:
x = 10
s = Sample()
print(s.x) # 10
print(Sample.x) # 10