9 lines
136 B
Python
9 lines
136 B
Python
class Sample:
|
|
other_samples = []
|
|
value = 0
|
|
|
|
sample = Sample()
|
|
other_sample = sample
|
|
sample.value = 20
|
|
print(other_sample.value)
|