summaryrefslogtreecommitdiffstats
path: root/no-getter-nor-setter-in-python.py
blob: b951182387e1347c1a3bfe8f414ed341026148fc (plain)
1
2
3
4
5
6
7
8
class Foo:
	def __init__(self, x):
		self.x = x

obj = Foo(42)
print(obj.x)
obj.x = 22
print(obj.x)