python-CSD-kursu/python-temel/class.sample.other.3.py
2023-06-25 16:08:11 +03:00

9 lines
185 B
Python

class Sample:
x = 10
def __init__(self, x):
self.x = x
s = Sample(20)
print(s.x) # 20
print(Sample.x) # 10